Update password-config.inc.php.tmpl

This commit is contained in:
Sebastian Hugentobler 2016-10-28 15:44:21 +02:00 committed by GitHub
parent 600f4dc03c
commit 46ffc61849

View File

@ -9,14 +9,14 @@ $config['password_force_save'] = true;
$config['password_algorithm'] = 'sha512-crypt';
$config['password_algorithm_prefix'] = '{CRYPT}';
$config['password_ldap_host'] = '{{getenv "LDAPHOST"}}';
$config['password_ldap_port'] = '389';
$config['password_ldap_host'] = '{{getenv "LDAP_HOST"}}';
$config['password_ldap_port'] = '{{getenv "LDAP_PORT" "389"}}';
$config['password_ldap_version'] = '3';
$config['password_ldap_starttls'] = {{getenv "LDAPSTARTTLS"}};
$config['password_ldap_basedn'] = '{{getenv "LDAPBASEDN"}}';
$config['password_ldap_starttls'] = {{getenv "LDAP_STARTTLS" "true"}};
$config['password_ldap_basedn'] = '{{getenv "LDAP_BASE_DN"}}';
$config['password_ldap_method'] = 'user';
$config['password_ldap_userDN_mask'] = '{{getenv "LDAPUSERDNMASK"}}';
$config['password_ldap_userDN_mask'] = '{{getenv "LDAP_USER_DN_MASK"}}';
$config['password_ldap_encodage'] = 'crypt';
$config['password_ldap_pwattr'] = '{{getenv "LDAPPASSWORDATTRIBUTE"}}';
$config['password_ldap_force_replace'] = true;
$config['password_ldap_pwattr'] = '{{getenv "LDAP_PASSWORD_ATTRIBUTE" "userPassword"}}';
$config['password_ldap_force_replace'] = true;