mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
cde551332e
commit
d607d2898f
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue