diff options
author | Olivier Blin <dev@blino.org> | 2017-07-05 01:48:48 +0200 |
---|---|---|
committer | Olivier Blin <dev@blino.org> | 2017-07-05 01:53:00 +0200 |
commit | c681e866efafac677227a0b4875fe670856cc6f3 (patch) | |
tree | 9a0c302b50abb5a227d5b370df9ac37a0ea898cb | |
parent | c2258ed3c3e7866e58b14275368d76c86920b61c (diff) | |
download | identity-c681e866efafac677227a0b4875fe670856cc6f3.tar identity-c681e866efafac677227a0b4875fe670856cc6f3.tar.gz identity-c681e866efafac677227a0b4875fe670856cc6f3.tar.bz2 identity-c681e866efafac677227a0b4875fe670856cc6f3.tar.xz identity-c681e866efafac677227a0b4875fe670856cc6f3.zip |
Workaround register page failure by disabling LDAP TLS verification
Like other CatDap services
mod_fcgid: stderr: [error] Caught exception in CatDap::Controller::register->check "LDAP TLS error: SSL connect attempt failed error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed at /usr/lib/perl5/vendor_perl/5.20.1/Catalyst/Model/LDAP.pm line 139.", referer: https://identity.mageia.org/register
-rw-r--r-- | lib/CatDap/Model/Proxy.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CatDap/Model/Proxy.pm b/lib/CatDap/Model/Proxy.pm index ba7e5dc..efdc997 100644 --- a/lib/CatDap/Model/Proxy.pm +++ b/lib/CatDap/Model/Proxy.pm @@ -10,7 +10,7 @@ __PACKAGE__->config( dn => '', password => '', start_tls => 0, - start_tls_options => { verify => 'require' }, + #start_tls_options => { verify => 'require' }, options => {}, # Options passed to search ); |