s3: piddir creation fix part 2.
[ira/wip.git] / source4 / setup / phpldapadmin-config.php
1 <?php
2 /**
3  * The phpLDAPadmin config file, customised for use with Samba4
4  *
5  * Use config.php.example to create config.php, if you don't have one.
6  *
7  * Append this file to config.php.
8  */
9
10 /* Create a new LDAP server for SAMBA4 */
11 $servers->newServer('ldap_pla');
12
13 /* A convenient name that will appear in the tree viewer and throughout
14    phpLDAPadmin to identify this LDAP server to users. */
15 $servers->setValue('server','name','Samba4 LDAP Server');
16 $servers->setValue('server','host','${S4_LDAPI_URI}');
17 $servers->setValue('login','auth_type','session');
18 $servers->setValue('login','attr','dn');
19
20 ?>