use 128 byte passwords

This commit is contained in:
Girish Ramakrishnan
2016-06-17 09:46:07 -05:00
parent 7e57f31d14
commit 2017d668a9
4 changed files with 7 additions and 7 deletions

View File

@@ -376,7 +376,7 @@ function setupLdap(app, options, callback) {
'LDAP_USERS_BASE_DN=ou=users,dc=cloudron',
'LDAP_GROUPS_BASE_DN=ou=groups,dc=cloudron',
'LDAP_BIND_DN=cn='+ app.id + ',ou=apps,dc=cloudron',
'LDAP_BIND_PASSWORD=' + hat(256) // this is ignored
'LDAP_BIND_PASSWORD=' + hat(8 * 128) // this is ignored
];
debugApp(app, 'Setting up LDAP');