Changeset

4889:0c5091b8b833

certmanager: Add no_ticket option for OpenSSL (we don't support resumption yet)
author Matthew Wild <mwild1@gmail.com>
date Fri, 18 May 2012 00:31:23 +0100
parents 4888:c3e17766aead
children 4890:7d4ec9609957
files core/certmanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core/certmanager.lua	Fri May 18 00:27:06 2012 +0100
+++ b/core/certmanager.lua	Fri May 18 00:31:23 2012 +0100
@@ -22,7 +22,7 @@
 -- 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)