instructions

This commit is contained in:
2022-11-29 22:29:19 +01:00
parent b3a7cdf39d
commit 409797b463
2 changed files with 41 additions and 10 deletions

14
local.protected.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
// Voir https://www.dokuwiki.org/fr:auth:ldap
$conf['useacl'] = 1; //enable ACL
$conf['authtype'] = 'authldap'; //enable this Auth plugin
$conf['superuser'] = 'CHANGEME user ou @group' ;
$conf['plugin']['authldap']['version'] = 3 ;
$conf['plugin']['authldap']['server'] = 'CHANGEME' ;
$conf['plugin']['authldap']['usertree'] = 'CHANGEME';
$conf['plugin']['authldap']['grouptree'] = 'CHANGEME';
$conf['plugin']['authldap']['userfilter'] = 'CHANGEME';
$conf['plugin']['authldap']['groupfilter'] = 'CHANGEME';
$conf['plugin']['authldap']['attributes'] = array('cn', 'displayname', 'mail', 'givenname', 'objectclass', 'sn', 'uid', 'memberof');
$conf['plugin']['authldap']['binddn'] = 'CHANGEME';
$conf['plugin']['authldap']['bindpw'] = 'CHANGEME';