diff options
author | Mohammed Al Sahaf <msaa1990@gmail.com> | 2019-10-16 00:37:46 +0300 |
---|---|---|
committer | Matt Holt <mholt@users.noreply.github.com> | 2019-10-15 15:37:46 -0600 |
commit | e3726588b416682db28ea9173bf2c36e4554ce05 (patch) | |
tree | 134ff2406bb89000b20555c84cf1b68154835a56 /modules | |
parent | abf5ab340ed76792214ae80c62df7abe0ad1b8a8 (diff) |
v2: Project-and-CI-wide linter config (#2812)
* v2: split golangci-lint configuration into its own file to allow code editors to take advantage of it
* v2: simplify code
* v2: set the correct lint output formatting
* v2: invert the logic of linter's configuration of output formatting to allow the editor convenience over CI-specific customization. Customize the output format in CI by passing the flag.
* v2: remove irrelevant golangci-lint config
Diffstat (limited to 'modules')
-rw-r--r-- | modules/caddyhttp/server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/server.go b/modules/caddyhttp/server.go index c4c306e..366a307 100644 --- a/modules/caddyhttp/server.go +++ b/modules/caddyhttp/server.go @@ -169,7 +169,7 @@ func (s *Server) enforcementHandler(w http.ResponseWriter, r *http.Request, next if err != nil { hostname = r.Host // OK; probably lacked port } - if strings.ToLower(r.TLS.ServerName) != strings.ToLower(hostname) { + if !strings.EqualFold(r.TLS.ServerName, hostname) { err := fmt.Errorf("strict host matching: TLS ServerName (%s) and HTTP Host (%s) values differ", r.TLS.ServerName, hostname) r.Close = true |