diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-05-18 00:31:23 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-05-18 00:31:23 +0100 |
commit | 78933624f852469ef225e7bec4f16690a97c9644 (patch) | |
tree | 1da5ea6841afe1d52243d2660357e1bb4ccf5fe1 | |
parent | d3a6cd662d586ec05452f2cce033aed6b22d8868 (diff) | |
download | prosody-78933624f852469ef225e7bec4f16690a97c9644.tar.gz prosody-78933624f852469ef225e7bec4f16690a97c9644.zip |
certmanager: Add no_ticket option for OpenSSL (we don't support resumption yet)
-rw-r--r-- | core/certmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 84fdddf4..28de82b1 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -22,7 +22,7 @@ module "certmanager" -- Global SSL options if not overridden per-host local default_ssl_config = configmanager.get("*", "core", "ssl"); local default_capath = "/etc/ssl/certs"; -local default_verify = (ssl and ssl.x509 and { "peer", "client_once", "continue", "ignore_purpose" }) or "none"; +local default_verify = (ssl and ssl.x509 and { "peer", "client_once", "continue", "ignore_purpose", "no_ticket" }) or "no_ticket"; local default_options = { "no_sslv2" }; function create_context(host, mode, user_ssl_config) |