summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/caddyhttp.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-09-13 11:46:58 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-09-13 11:46:58 -0600
commit839507e24e4d8d2d8052335fafb110513865efc0 (patch)
treefc9346b81193bc38af38b3a86cc3904be1873401 /modules/caddyhttp/caddyhttp.go
parent833d67446f14e88c2888db2c3796568fd00bae7a (diff)
http: Consider wildcards when evaluating automatic HTTPS
Diffstat (limited to 'modules/caddyhttp/caddyhttp.go')
-rw-r--r--modules/caddyhttp/caddyhttp.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/caddyhttp/caddyhttp.go b/modules/caddyhttp/caddyhttp.go
index b6a8148..c044a9b 100644
--- a/modules/caddyhttp/caddyhttp.go
+++ b/modules/caddyhttp/caddyhttp.go
@@ -313,8 +313,8 @@ func (app *App) automaticHTTPS() error {
// don't obtain another one for it, unless we are
// supposed to ignore loaded certificates
if !srv.AutoHTTPS.IgnoreLoadedCerts &&
- len(tlsApp.CertificatesWithSAN(d)) > 0 {
- log.Printf("[INFO][%s] Skipping automatic certificate management because a certificate with that SAN is already loaded", d)
+ len(tlsApp.AllMatchingCertificates(d)) > 0 {
+ log.Printf("[INFO][%s] Skipping automatic certificate management because one or more matching certificates are already loaded", d)
continue
}
domainsForCerts = append(domainsForCerts, d)