diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2020-03-17 21:00:45 -0600 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2020-03-17 21:00:45 -0600 |
commit | fc7340e11aa9ca6326909aedfd36bb2c5b53d2a8 (patch) | |
tree | b057f7368a355192bdb40784b6d95716982e6923 /modules/caddyhttp | |
parent | 3f48a2eb455167af8d77c5c4543bd17a80a93260 (diff) |
httpcaddyfile: Many tls-related improvements including on-demand support
Holy heck this was complicated
Diffstat (limited to 'modules/caddyhttp')
-rw-r--r-- | modules/caddyhttp/autohttps.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/autohttps.go b/modules/caddyhttp/autohttps.go index dfd659f..1239abb 100644 --- a/modules/caddyhttp/autohttps.go +++ b/modules/caddyhttp/autohttps.go @@ -232,7 +232,7 @@ uniqueDomainsLoop: // some names we've found might already have automation policies // explicitly specified for them; we should exclude those from // our hidden/implicit policy, since applying a name to more than - // one automation policy would be confusing and an error + // one automation policy would be confusing and an error if app.tlsApp.Automation != nil { for _, ap := range app.tlsApp.Automation.Policies { for _, apHost := range ap.Subjects { |