Skip to content
Snippets Groups Projects

Update docs

Merged Hahn Axel (hahn) requested to merge update-docs into master
5 files
+ 70
47
Compare changes
  • Side-by-side
  • Inline

Files

+ 10
16
@@ -10,24 +10,18 @@ require_once '[APPROOT]/classes/ldap.class.php';
@@ -10,24 +10,18 @@ require_once '[APPROOT]/classes/ldap.class.php';
As an example I create a hash named $aConfig and save it as "inc_config.php".
As an example I create a hash named $aConfig and save it as "inc_config.php".
 
```php
```php
return [
return [
...
...
'ldap-master' => [
'ldap-master' => [
'server' => 'ldaps://ldap.example.com',
'server' => 'ldaps://ldap.example.com',
'DnLdapUser' => 'cn=Lookup,ou=Service,dc=some,dc=example.com',
'DnLdapUser' => 'cn=Lookup,ou=Service,dc=some,dc=example.com',
'PwLdapUser' => 'PasswordOfLookupUser',
'PwLdapUser' => 'PasswordOfLookupUser',
// node where to find users that are allowed to login
// See Configuration page for all values.
'DnUserNode' => 'ou=People,dc=some,dc=example.com',
// node where to find my app
'DnAppNode' => 'cn=MyApp,dc=some,dc=example.com',
'debugLevel' => 0,
],
],
...
...
];
];
```
```
Loading