From c311d42f9b1cef2ef255045585ffc348164783d8 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sat, 13 Feb 2010 16:21:32 +0000 Subject: prosody: Use certmanager to create the global SSL context --- prosody | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/prosody b/prosody index df7ce9fb..2f60181e 100755 --- a/prosody +++ b/prosody @@ -186,12 +186,9 @@ function init_global_state() end -- Load SSL settings from config, and create a ctx table - local global_ssl_ctx = rawget(_G, "ssl") and config.get("*", "core", "ssl"); - if global_ssl_ctx then - local default_ssl_ctx = { mode = "server", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none", options = "no_sslv2" }; - setmetatable(global_ssl_ctx, { __index = default_ssl_ctx }); - prosody.global_ssl_ctx = global_ssl_ctx; - end + local certmanager = require "core.certmanager"; + local global_ssl_ctx = certmanager.create_context("*", "server"); + prosody.global_ssl_ctx = global_ssl_ctx; local cl = require "net.connlisteners"; function prosody.net_activate_ports(option, listener, default, conntype) -- cgit v1.2.3