mirror of
https://github.com/lldap/lldap.git
synced 2024-11-25 09:06:03 +00:00
example_configs: Add Kanboard
This commit is contained in:
parent
ffc59af345
commit
80fc94c4db
1 changed files with 33 additions and 0 deletions
33
example_configs/kanboard.md
Normal file
33
example_configs/kanboard.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# configuration for Kanboard
|
||||
|
||||
add these to the Kanboard `config.php`
|
||||
|
||||
Make sure you adapt the constant `LDAP_SERVER` to the correct LDAP endpoint.
|
||||
|
||||
You also might have to change `dc=example,dc=com` to whatever your LLDAP is handling, and maybe change the `kanboard_users` group name used in `LDAP_USER_FILTER` to identify users of a valid group of yours.
|
||||
|
||||
```
|
||||
define('LDAP_AUTH', true);
|
||||
define('LDAP_SERVER', 'ldap://lldap-server.com:3890');
|
||||
define('LDAP_SSL_VERIFY', true);
|
||||
define('LDAP_START_TLS', false);
|
||||
|
||||
define('LDAP_USERNAME_CASE_SENSITIVE', false);
|
||||
define('LDAP_USER_CREATION', true);
|
||||
|
||||
define('LDAP_BIND_TYPE', 'user');
|
||||
define('LDAP_USERNAME', 'uid=%s,ou=people,dc=example,dc=com');
|
||||
define('LDAP_PASSWORD', null);
|
||||
|
||||
define('LDAP_USER_BASE_DN', 'ou=people,dc=example,dc=com');
|
||||
|
||||
define('LDAP_USER_FILTER', '(&(uid=%s)(memberof=cn=kanboard_users,ou=groups,dc=example,dc=com))');
|
||||
define('LDAP_USERNAME_CASE_SENSITIVE', false);
|
||||
|
||||
define('LDAP_USER_ATTRIBUTE_USERNAME', 'uid');
|
||||
define('LDAP_USER_ATTRIBUTE_FULLNAME', 'cn');
|
||||
define('LDAP_USER_ATTRIBUTE_EMAIL', 'mail');
|
||||
define('LDAP_USER_ATTRIBUTE_GROUPS', 'memberof');
|
||||
define('LDAP_USER_ATTRIBUTE_PHOTO', 'jpegPhoto');
|
||||
define('LDAP_USER_ATTRIBUTE_LANGUAGE', '');
|
||||
```
|
Loading…
Reference in a new issue