diff options
author | Matthew Holt <[email protected]> | 2020-04-09 13:09:48 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2020-04-09 13:09:48 -0600 |
commit | 85f5f47f31f09f8dda6f6ab77749edddb17551a1 (patch) | |
tree | 641944dce493d83155653226ebbe16c9c797c14c /modules/caddyhttp | |
parent | 6e4132eb89ccf399c97c9439f6f9ff9fcac21956 (diff) | |
download | caddy-85f5f47f31f09f8dda6f6ab77749edddb17551a1.tar.gz caddy-85f5f47f31f09f8dda6f6ab77749edddb17551a1.zip |
caddytls: Don't initialize default internal issuer unless necessary
Otherwise, a password prompt can occur unnecessarily.
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 ecb988ae6..44cf58144 100644 --- a/modules/caddyhttp/autohttps.go +++ b/modules/caddyhttp/autohttps.go @@ -339,7 +339,7 @@ uniqueDomainsLoop: } redirTo += "{http.request.uri}" routes = append(routes, Route{ - MatcherSets: []MatcherSet{MatcherSet{MatchProtocol("http")}}, + MatcherSets: []MatcherSet{{MatchProtocol("http")}}, Handlers: []MiddlewareHandler{ StaticResponse{ StatusCode: WeakString(strconv.Itoa(http.StatusPermanentRedirect)), |