diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-06 13:23:48 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-06 13:23:48 -0500 |
commit | 18bba794131e18b6ae81dff897bc196f43ca9d63 (patch) | |
tree | e7c7aab30e5e386c8cc6addcd24669c27f4aa6b3 /docs | |
parent | 52c1a3b374d6c34abd9016a102bb73dc5cce895e (diff) |
Add support for ldap_start_tls()
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ldap-authentication.markdown | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ldap-authentication.markdown b/docs/ldap-authentication.markdown index 900f3107..0428d8e0 100644 --- a/docs/ldap-authentication.markdown +++ b/docs/ldap-authentication.markdown @@ -49,6 +49,9 @@ define('LDAP_PORT', 389); // By default, require certificate to be verified for ldaps:// style URL. Set to false to skip the verification. define('LDAP_SSL_VERIFY', true); +// Enable LDAP START_TLS +define('LDAP_START_TLS', false); + // LDAP bind type: "anonymous", "user" (use the given user/password from the form) and "proxy" (a specific user to browse the LDAP directory) define('LDAP_BIND_TYPE', 'anonymous'); |