core.certmanager: Use 'tls_profile' instead of 'tls_preset' to match documentation

Confusion!

Thanks Martin
This commit is contained in:
Kim Alvefur 2022-01-18 11:52:35 +01:00
parent 8edd063114
commit 73c3ab7888

View file

@ -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);