mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
core.certmanager: Look for privkey.pem to go with fullchain.pem (fix #1526)
This makes `prosodyctl cert import example.com /path/to/example.com/fullchain.pem` work. This was never intended to, yet users commonly tried this and got problems.
This commit is contained in:
parent
8c3758b34c
commit
82c2f6fe22
1 changed files with 8 additions and 6 deletions
|
@ -73,13 +73,15 @@ local function find_cert(user_certs, name)
|
|||
local key_path = certs .. key_try[i]:format(name);
|
||||
|
||||
if stat(crt_path, "mode") == "file" then
|
||||
if key_path:sub(-4) == ".crt" then
|
||||
key_path = key_path:sub(1, -4) .. "key";
|
||||
if stat(key_path, "mode") == "file" then
|
||||
log("debug", "Selecting certificate %s with key %s for %s", crt_path, key_path, name);
|
||||
return { certificate = crt_path, key = key_path };
|
||||
if crt_path == key_path then
|
||||
if key_path:sub(-4) == ".crt" then
|
||||
key_path = key_path:sub(1, -4) .. "key";
|
||||
elseif key_path:sub(-13) == "fullchain.pem" then
|
||||
key_path = key_path:sub(1, -14) .. "privkey.pem";
|
||||
end
|
||||
elseif stat(key_path, "mode") == "file" then
|
||||
end
|
||||
|
||||
if stat(key_path, "mode") == "file" then
|
||||
log("debug", "Selecting certificate %s with key %s for %s", crt_path, key_path, name);
|
||||
return { certificate = crt_path, key = key_path };
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue