From 040187b661db063f291ee117982a5858389179d0 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 11 Jun 2013 21:44:53 +0100 Subject: certmanager: Use 'curve' and 'dhparam' options from ssl config if present --- core/certmanager.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core') diff --git a/core/certmanager.lua b/core/certmanager.lua index 49f445f6..f9a54cb1 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -62,6 +62,8 @@ function create_context(host, mode, user_ssl_config) verifyext = user_ssl_config.verifyext or default_verifyext; options = user_ssl_config.options or default_options; depth = user_ssl_config.depth; + curve = user_ssl_config.curve; + dhparam = user_ssl_config.dhparam; }; local ctx, err = ssl_newcontext(ssl_config); -- cgit v1.2.3