summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--doc/authentication.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/authentication.txt b/doc/authentication.txt
index fb29c82..da49e5a 100644
--- a/doc/authentication.txt
+++ b/doc/authentication.txt
@@ -173,3 +173,25 @@ function md5_mediawiki($password) {
return ':A:' . md5($password);
}
-8<------------------
+
+
+Active Directory / LDAP
+-----------------------
+Here we authenticate against an active directory server.
+
+config.php settings:
+-8<------------------
+$serviceoverrides['User'] = 'SemanticScuttle_Service_AuthUser';
+$authType = 'LDAP';
+$authOptions = array(
+ 'host' => '192.168.1.4',
+ 'version' => 3,
+ 'basedn' => 'DC=EXAMPLE,DC=ORG',
+ 'binddn' => 'readuser',
+ 'bindpw' => 'readuser',
+ 'userattr' => 'sAMAccountName',
+ 'userfilter' => '(objectClass=user)',
+ 'attributes' => array(''),
+);
+$authEmailSuffix = '@example.org';
+-8<------------------