ldap change to url for making it possible to use ldaps:// too
This commit is contained in:
parent
206e7a5b52
commit
5325f2ea78
2 changed files with 4 additions and 6 deletions
|
@ -87,7 +87,7 @@ if (config.ldap.enabled && LdapStrategy) {
|
|||
|
||||
let opts = {
|
||||
server: {
|
||||
url: 'ldap://' + config.ldap.host + ':' + config.ldap.port
|
||||
url: config.ldap.url
|
||||
},
|
||||
base: config.ldap.baseDN,
|
||||
search: {
|
||||
|
@ -130,7 +130,7 @@ if (config.ldap.enabled && LdapStrategy) {
|
|||
log.info('Using LDAP auth (passport-ldapauth)');
|
||||
let opts = {
|
||||
server: {
|
||||
url: 'ldap://' + config.ldap.host + ':' + config.ldap.port,
|
||||
url: config.ldapauth.url,
|
||||
searchBase: config.ldapauth.baseDN,
|
||||
searchFilter: config.ldapauth.filter,
|
||||
searchAttributes: [config.ldapauth.uidTag, 'mail'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue