summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/server.go
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2021-07-14 12:49:34 -0400
committerGitHub <noreply@github.com>2021-07-14 10:49:34 -0600
commit1c6c7714a38879f78c486fcb9c7c6e39fc39c6a5 (patch)
tree60aeef93150ebbd3b4b5c5654ca9a014111335c5 /modules/caddyhttp/server.go
parent46d99aba854ce19d51a075c39a8747b4f2404743 (diff)
caddyhttp: Fix edgecase with auto HTTP->HTTPS logic (#4243)
Diffstat (limited to 'modules/caddyhttp/server.go')
-rw-r--r--modules/caddyhttp/server.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/caddyhttp/server.go b/modules/caddyhttp/server.go
index 294ee6a..9dc1028 100644
--- a/modules/caddyhttp/server.go
+++ b/modules/caddyhttp/server.go
@@ -379,7 +379,9 @@ func (s *Server) hasTLSClientAuth() bool {
// that it is after any other host matcher but before any "catch-all"
// route without a host matcher.
func (s *Server) findLastRouteWithHostMatcher() int {
+ foundHostMatcher := false
lastIndex := len(s.Routes)
+
for i, route := range s.Routes {
// since we want to break out of an inner loop, use a closure
// to allow us to use 'return' when we found a host matcher
@@ -388,6 +390,7 @@ func (s *Server) findLastRouteWithHostMatcher() int {
for _, matcher := range sets {
switch matcher.(type) {
case *MatchHost:
+ foundHostMatcher = true
return true
}
}
@@ -401,6 +404,14 @@ func (s *Server) findLastRouteWithHostMatcher() int {
lastIndex = i + 1
}
}
+
+ // If we didn't actually find a host matcher, return 0
+ // because that means every defined route was a "catch-all".
+ // See https://caddy.community/t/how-to-set-priority-in-caddyfile/13002/8
+ if !foundHostMatcher {
+ return 0
+ }
+
return lastIndex
}