From 3faa06e9d4652e62a9eacd8c0baec85d3a3d4488 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 18 May 2012 01:50:51 +0100 Subject: certmanager: no_ticket is not a verification option (thanks Zash) --- core/certmanager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/certmanager.lua') diff --git a/core/certmanager.lua b/core/certmanager.lua index 28de82b1..1b1615a1 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -22,8 +22,8 @@ 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", "no_ticket" }) or "no_ticket"; -local default_options = { "no_sslv2" }; +local default_verify = (ssl and ssl.x509 and { "peer", "client_once", "continue", "ignore_purpose" }) or "none"; +local default_options = { "no_sslv2", "no_ticket" }; function create_context(host, mode, user_ssl_config) user_ssl_config = user_ssl_config or default_ssl_config; -- cgit v1.2.3