diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-10-16 12:52:47 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-10-16 12:52:47 +0000 |
commit | d48a657b344be6a19d8fa57a7564ea8ac8c89421 (patch) | |
tree | 9eb77b44b56e81222010e36b750bb97500bd1982 /etc/couchdb | |
parent | 9c562724956541ce2122e944bed943f49989014a (diff) |
Replicator: fix issues when a peer is accessible via SSL.
Closes COUCHDB-491.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1023274 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'etc/couchdb')
-rw-r--r-- | etc/couchdb/default.ini.tpl.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/couchdb/default.ini.tpl.in b/etc/couchdb/default.ini.tpl.in index 49a64058..d7132885 100644 --- a/etc/couchdb/default.ini.tpl.in +++ b/etc/couchdb/default.ini.tpl.in @@ -129,3 +129,9 @@ compressible_types = text/*, application/javascript, application/json, applicat db = _replicator max_http_sessions = 10 max_http_pipeline_size = 10 +; set to true to validate peer certificates +verify_ssl_certificates = false +; file containing a list of peer trusted certificates (PEM format) +; ssl_trusted_certificates_file = /etc/ssl/certs/ca-certificates.crt +; maximum peer certificate depth (must be set even if certificate validation is off) +ssl_certificate_max_depth = 3 |