24 lines
925 B
PHP
24 lines
925 B
PHP
<?php
|
|
/*
|
|
* Dokuwiki's Main Configuration File - Local Settings
|
|
* Auto-generated by config plugin
|
|
* Run for user: Unknown
|
|
* Date: Tue, 27 Sep 2022 10:19:37 +0200
|
|
*/
|
|
|
|
$conf['title'] = 'Test wiki';
|
|
$conf['lang'] = 'fr';
|
|
$conf['license'] = 'cc-by-sa';
|
|
$conf['useacl'] = 1;
|
|
$conf['authtype'] = 'authldap';
|
|
$conf['superuser'] = '@admin';
|
|
$conf['disableactions'] = 'register';
|
|
$conf['plugin']['authldap']['server'] = 'ldap://localhost:389';
|
|
$conf['plugin']['authldap']['usertree'] = 'ou=people,dc=labo52,dc=lan';
|
|
$conf['plugin']['authldap']['grouptree'] = 'ou=groups,dc=labo52,dc=lan';
|
|
$conf['plugin']['authldap']['userfilter'] = '(&(uid=%{user})(objectClass=posixAccount))';
|
|
$conf['plugin']['authldap']['groupfilter'] = '(objectClass=posixGroup)(|(gidNumber=%{gid})(memberUID=%{user})))';
|
|
$conf['plugin']['authldap']['passcrypt'] = 'ssha';
|
|
$conf['plugin']['authldap']['version'] = 3;
|
|
$conf['plugin']['authldap']['debug'] = 0;
|