diff options
author | benoitc <bchesneau@gmail.com> | 2011-09-13 06:14:58 +0200 |
---|---|---|
committer | Robert Newson <robert.newson@cloudant.com> | 2011-09-26 23:56:25 +0100 |
commit | e9cc7d004d946d261f8fbee8884e7f3cab4a1f44 (patch) | |
tree | b1951cb2ad3f1164f624ceebd190441901981085 /rel/overlay/etc | |
parent | 8a96880cd02ea9286dea597d213ddf0d4487cbc3 (diff) |
add https support.
Diffstat (limited to 'rel/overlay/etc')
-rw-r--r-- | rel/overlay/etc/default.ini | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini index 81c363da..c143ac2d 100644 --- a/rel/overlay/etc/default.ini +++ b/rel/overlay/etc/default.ini @@ -17,6 +17,21 @@ port = {{cluster_port}} backlog = 512 docroot = {{prefix}}/share/www +[chttps] +;cert_file = /full/path/to/server_cert.pem +;key_file = /full/path/to/server_key.pem +;password = somepassword +; set to true to validate peer certificates +verify_ssl_certificates = false +; Path to file containing PEM encoded CA certificates (trusted +; certificates used for verifying a peer certificate). May be omitted if +; you do not want to verify the peer. +;cacert_file = /full/path/to/cacertf +; The verification fun (optionnal) if not specidied, the default +; verification fun will be used. +;verify_fun = {Module, VerifyFun} +ssl_certificate_max_depth = 1 + [httpd] port = {{backend_port}} bind_address = 127.0.0.1 |