mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.certmanager: Check for complete filename
Prevents a false positive match on files with fullchain.pem as suffix
This commit is contained in:
parent
02cead40db
commit
003e8f633a
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ local function find_cert(user_certs, name)
|
|||
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
|
||||
elseif key_path:sub(-14) == "/fullchain.pem" then
|
||||
key_path = key_path:sub(1, -14) .. "privkey.pem";
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue