mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_tls: Log when certificates are (re)loaded
Meant to reduce user confusion over what's reloaded and not.
This commit is contained in:
parent
156f32c823
commit
7c18043404
1 changed files with 7 additions and 1 deletions
|
@ -36,7 +36,7 @@ local host = hosts[module.host];
|
|||
local ssl_ctx_c2s, ssl_ctx_s2sout, ssl_ctx_s2sin;
|
||||
local ssl_cfg_c2s, ssl_cfg_s2sout, ssl_cfg_s2sin;
|
||||
|
||||
function module.load()
|
||||
function module.load(reload)
|
||||
local NULL, err = {};
|
||||
local modhost = module.host;
|
||||
local parent = modhost:match("%.(.*)$");
|
||||
|
@ -63,6 +63,12 @@ function module.load()
|
|||
module:log("debug", "Creating context for s2sin");
|
||||
ssl_ctx_s2sin, err, ssl_cfg_s2sin = create_context(host.host, "server", host_s2s, host_ssl, global_s2s); -- for incoming server connections
|
||||
if not ssl_ctx_s2sin then module:log("error", "Error creating contexts for s2sin: %s", err); end
|
||||
|
||||
if reload then
|
||||
module:log("info", "Certificates reloaded");
|
||||
else
|
||||
module:log("info", "Certificates loaded");
|
||||
end
|
||||
end
|
||||
|
||||
module:hook_global("config-reloaded", module.load);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue