mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.certmanager: Use 'tls_profile' instead of 'tls_preset' to match documentation
Confusion! Thanks Martin
This commit is contained in:
parent
8edd063114
commit
73c3ab7888
1 changed files with 3 additions and 3 deletions
|
@ -350,9 +350,9 @@ local function create_context(host, mode, ...)
|
|||
-- We can't read the password interactively when daemonized
|
||||
password = function() log("error", "Encrypted certificate for %s requires 'ssl' 'password' to be set in config", host); end;
|
||||
});
|
||||
local preset = configmanager.get("*", "tls_preset") or "intermediate";
|
||||
if preset ~= "legacy" then
|
||||
cfg:apply(mozilla_ssl_configs[preset]);
|
||||
local profile = configmanager.get("*", "tls_profile") or "intermediate";
|
||||
if profile ~= "legacy" then
|
||||
cfg:apply(mozilla_ssl_configs[profile]);
|
||||
end
|
||||
cfg:apply(global_ssl_config);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue