util.prosodyctl.cert: Look for certs matching 'http_host'

This should ensure any certificate needed for HTTP services will also be
included in the certificate import.
This commit is contained in:
Kim Alvefur 2022-01-27 16:23:26 +01:00
parent cde551332e
commit d607d2898f

View file

@ -201,6 +201,10 @@ function cert_commands.import(arg)
for host in pairs(prosody.hosts) do
if host ~= "*" and configmanager.get(host, "enabled") ~= false then
table.insert(hostnames, host);
local http_host = configmanager.get(host, "http_host") or host;
if http_host ~= host then
table.insert(hostnames, http_host);
end
end
end
end