15 lines
372 B
Plaintext
15 lines
372 B
Plaintext
module.exports = {
|
|
userModel: 'ldap',
|
|
ldap: {
|
|
url: 'ldap://localhost:389',
|
|
bindDN: 'cn=admin,{{ldap_base}}',
|
|
bindPassword: '{{password}}',
|
|
userBase: 'ou=People,{{ldap_base}}',
|
|
groupBase: 'ou=Groups,{{ldap_base}}',
|
|
userFilter: '(objectClass=posixAccount)',
|
|
userNameAttribute: 'uid',
|
|
clinetBind: '{{ldpad_client_password}}'
|
|
},
|
|
name: '{{org_name}}',
|
|
};
|