diff options
Diffstat (limited to 'caddyconfig')
| -rw-r--r-- | caddyconfig/httpcaddyfile/httptype.go | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/caddyconfig/httpcaddyfile/httptype.go b/caddyconfig/httpcaddyfile/httptype.go index 7be932f..3f37f02 100644 --- a/caddyconfig/httpcaddyfile/httptype.go +++ b/caddyconfig/httpcaddyfile/httptype.go @@ -400,6 +400,11 @@ func (st *ServerType) serversFromPairings(  					jLongestPath = addr.Path  				}  			} +			if specificity(jLongestHost) == 0 { +				// catch-all blocks (blocks with no hostname) should always go +				// last, even after blocks with wildcard hosts +				return true +			}  			if iWildcardHost != jWildcardHost {  				// site blocks that have a key with a wildcard in the hostname  				// must always be less specific than blocks without one; see | 
