mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
core.certmanager: Expand debug messages about cert lookups in index
Answers my recurring question of > Using cert "certs/example.com.crt" from index ... for what?
This commit is contained in:
parent
dc79c92cbc
commit
1f668fed00
1 changed files with 2 additions and 2 deletions
|
@ -159,7 +159,7 @@ local function find_cert_in_index(index, host)
|
||||||
if certs then
|
if certs then
|
||||||
local cert_filename, services = next(certs);
|
local cert_filename, services = next(certs);
|
||||||
if services["*"] then
|
if services["*"] then
|
||||||
log("debug", "Using cert %q from index", cert_filename);
|
log("debug", "Using cert %q from index for host %q", cert_filename, host);
|
||||||
return {
|
return {
|
||||||
certificate = cert_filename,
|
certificate = cert_filename,
|
||||||
key = find_matching_key(cert_filename),
|
key = find_matching_key(cert_filename),
|
||||||
|
@ -185,7 +185,7 @@ local function find_service_cert(service, port)
|
||||||
for _, certs in pairs(cert_index) do
|
for _, certs in pairs(cert_index) do
|
||||||
for cert_filename, services in pairs(certs) do
|
for cert_filename, services in pairs(certs) do
|
||||||
if services[service] or services["*"] then
|
if services[service] or services["*"] then
|
||||||
log("debug", "Using cert %q from index", cert_filename);
|
log("debug", "Using cert %q from index for service %s port %d", cert_filename, service, port);
|
||||||
return {
|
return {
|
||||||
certificate = cert_filename,
|
certificate = cert_filename,
|
||||||
key = find_matching_key(cert_filename),
|
key = find_matching_key(cert_filename),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue