[Openupload-svn-update] SF.net SVN: openupload:[79] trunk/www/config.inc.php.example
Status: Beta
Brought to you by:
tsdogs
|
From: <ts...@us...> - 2008-10-24 11:13:02
|
Revision: 79
http://openupload.svn.sourceforge.net/openupload/?rev=79&view=rev
Author: tsdogs
Date: 2008-10-24 11:08:04 +0000 (Fri, 24 Oct 2008)
Log Message:
-----------
Add Active Directory Authentication sample options
Modified Paths:
--------------
trunk/www/config.inc.php.example
Modified: trunk/www/config.inc.php.example
===================================================================
--- trunk/www/config.inc.php.example 2008-10-24 11:07:40 UTC (rev 78)
+++ trunk/www/config.inc.php.example 2008-10-24 11:08:04 UTC (rev 79)
@@ -78,7 +78,25 @@
/* other group field correspondence with application */
# $CONFIG['ldap']['sgroupfields'] = array ( 'cn' => 'name', 'description' => 'description' );
+/* Active Directory */
+# $CONFIG['ldap']['host'] = '127.0.0.1';
+/* specify that it is an Active directory */
+# $CONFIG['ldap']['type'] = 'AD';
+# $CONFIG['ldap']['user'] = 'rea...@ro...';
+# $CONFIG['ldap']['password'] = 'readonlypassword';
+/* DOMAIN for user login */
+# $CONFIG['ldap']['domain'] = 'yourdomain.local';
+# $CONFIG['ldap']['basedn'] = 'dc=yourdomain,dc=local';
+# $CONFIG['ldap']['userdn'] = 'dc=yourdomain,dc=local';
+# $CONFIG['ldap']['userclass']='user';
+# $CONFIG['ldap']['uid']='cn';
+# $CONFIG['ldap']['userfields'] = array ( 'cn' => 'login', 'name' => 'name', 'memberof' => 'group_id', 'mail' => 'email');
+# $CONFIG['ldap']['groupdn'] = 'dc=roverdom,dc=local';
+# $CONFIG['ldap']['groupclass']='group';
+# $CONFIG['ldap']['gid']='distinguishedname';
+# $CONFIG['ldap']['groupfields'] = array ( 'cn' => 'name', 'name' => 'description' );
+
/* PLUGINS: here you enable the plugins
* they will need to enable the functionality
* on a group basis
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|