diff options
author | Marc Easen <[email protected]> | 2021-10-26 20:54:19 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-26 13:54:19 -0600 |
commit | 012d235314fcc2a27302d00ee6f53459e54c0eb8 (patch) | |
tree | 5fc3ca4e53c0c1698b88a0e27fe6c1b2a69ddadf /caddyconfig | |
parent | 997e41deae139dbf2cb3e95ed250070b40d6f3cb (diff) | |
download | caddy-012d235314fcc2a27302d00ee6f53459e54c0eb8.tar.gz caddy-012d235314fcc2a27302d00ee6f53459e54c0eb8.zip |
httpcaddyfile: Empty tls policy for internal http localhost (#4398)
* test: replicated empty tls automation policy issue
* fix: empty tls policy for an http:// endpoint running on a non-standard http port
Diffstat (limited to 'caddyconfig')
-rw-r--r-- | caddyconfig/httpcaddyfile/directives.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/caddyconfig/httpcaddyfile/directives.go b/caddyconfig/httpcaddyfile/directives.go index 360f91e7c..9da205e2e 100644 --- a/caddyconfig/httpcaddyfile/directives.go +++ b/caddyconfig/httpcaddyfile/directives.go @@ -485,7 +485,7 @@ func (sb serverBlock) hostsFromKeysNotHTTP(httpPort string) []string { if addr.Host == "" { continue } - if addr.Scheme != "http" && addr.Port != httpPort { + if addr.Scheme != "http" || addr.Port != httpPort { hostMap[addr.Host] = struct{}{} } } |