summaryrefslogtreecommitdiff
path: root/modules/caddytls/tls.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/caddytls/tls.go
parent833d67446f14e88c2888db2c3796568fd00bae7a (diff)
http: Consider wildcards when evaluating automatic HTTPS
Diffstat (limited to 'modules/caddytls/tls.go')
-rw-r--r--modules/caddytls/tls.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/caddytls/tls.go b/modules/caddytls/tls.go
index bbcf61e..99d3a5f 100644
--- a/modules/caddytls/tls.go
+++ b/modules/caddytls/tls.go
@@ -200,10 +200,10 @@ func (t *TLS) getAutomationPolicyForName(name string) AutomationPolicy {
return AutomationPolicy{Management: new(ACMEManagerMaker)}
}
-// CertificatesWithSAN returns the list of all certificates
-// in the cache the match the given SAN value.
-func (t *TLS) CertificatesWithSAN(san string) []certmagic.Certificate {
- return t.certCache.CertificatesWithSAN(san)
+// CertificatesForSAN returns the list of all certificates in
+// the cache which could be used to satisfy the given SAN.
+func (t *TLS) AllMatchingCertificates(san string) []certmagic.Certificate {
+ return t.certCache.AllMatchingCertificates(san)
}
// CertificateLoader is a type that can load certificates.