diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-15 12:35:10 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-15 12:35:10 +0100 |
commit | f34bb8e3e0b37fa5f815af559a948a11b3890b24 (patch) | |
tree | d06957d87e5eb022de70ba37b305698210000b58 /conf | |
parent | 76981d741b1ae89b93dad85e32223d88ac3a82ab (diff) | |
download | pykolab-f34bb8e3e0b37fa5f815af559a948a11b3890b24.tar.gz |
Set by default the ssl_verify_peer and ssl_verify_host settings to false (#751, #c19)
Diffstat (limited to 'conf')
-rw-r--r-- | conf/kolab.conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/conf/kolab.conf b/conf/kolab.conf index 84511a1..03bfd06 100644 --- a/conf/kolab.conf +++ b/conf/kolab.conf @@ -142,8 +142,11 @@ sql_uri = mysql://user:pass@localhost/database ; Configure SSL should you want to have the web admin panel (client interface) ; use the API over HTTPS. -;ssl_verify_peer = false -;ssl_verify_host = false +; +; By default, httpd and coconspirators are setup to use self-signed certificates, +; so the following two settings are set to false by default. +ssl_verify_peer = false +ssl_verify_host = false ;ssl_cafile = /path/to/ca/file ;ssl_capath = /path/to/ca/dir ;ssl_local_cert = /path/to/local/cert |