mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: More use of config sections removed
This commit is contained in:
parent
1acfdf5914
commit
16c7c4e78d
1 changed files with 2 additions and 2 deletions
|
@ -92,10 +92,10 @@ module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza)
|
|||
end);
|
||||
|
||||
function module.load()
|
||||
local ssl_config = config.rawget(module.host, "core", "ssl");
|
||||
local ssl_config = config.rawget(module.host, "ssl");
|
||||
if not ssl_config then
|
||||
local base_host = module.host:match("%.(.*)");
|
||||
ssl_config = config.get(base_host, "core", "ssl");
|
||||
ssl_config = config.get(base_host, "ssl");
|
||||
end
|
||||
host.ssl_ctx = create_context(host.host, "client", ssl_config); -- for outgoing connections
|
||||
host.ssl_ctx_in = create_context(host.host, "server", ssl_config); -- for incoming connections
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue