mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
core.certmanager: Tweak log level of message about SNI being required
Everything supports SNI today, so this is not useful information.
This commit is contained in:
parent
40c7ebddd1
commit
2c9c0fab32
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ local function create_context(host, mode, ...)
|
||||||
|
|
||||||
if mode == "server" then
|
if mode == "server" then
|
||||||
if not user_ssl_config.certificate then
|
if not user_ssl_config.certificate then
|
||||||
log("info", "No certificate present in SSL/TLS configuration for %s. SNI will be required.", host);
|
log("debug", "No certificate present in SSL/TLS configuration for %s. SNI will be required.", host);
|
||||||
end
|
end
|
||||||
if user_ssl_config.certificate and not user_ssl_config.key then return nil, "No key present in SSL/TLS configuration for "..host; end
|
if user_ssl_config.certificate and not user_ssl_config.key then return nil, "No key present in SSL/TLS configuration for "..host; end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue