diff options
| author | Francois Ferrand <thetypz@gmail.com> | 2014-07-03 10:25:25 +0200 |
|---|---|---|
| committer | Francois Ferrand <thetypz@gmail.com> | 2014-07-03 10:29:21 +0200 |
| commit | 0a3049c17293e6b7b416b4264ace1f373bda6728 (patch) | |
| tree | 3860b7dd2db87e1aff4db8b0fc5ded0b4582e53e /config.default.php | |
| parent | 98bd694e2bd47b0c4ed8247546b1903c762ffdde (diff) | |
Add option to disable SSL certificate verification for LDAP.
Diffstat (limited to 'config.default.php')
| -rw-r--r-- | config.default.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.default.php b/config.default.php index db3b7221..e3551994 100644 --- a/config.default.php +++ b/config.default.php @@ -30,6 +30,9 @@ define('LDAP_SERVER', ''); // LDAP server port (389 by default) 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); + // LDAP username to connect with. NULL for anonymous bind (by default). define('LDAP_USERNAME', null); |
