caddyhttp: Honor wildcard hosts in log SkipHosts (#4606)

This commit is contained in:
Matt Holt 2022-03-04 13:44:59 -07:00 committed by GitHub
parent a72acd21b0
commit 2bb8550a4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,7 @@ import (
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/modules/caddytls"
"github.com/caddyserver/certmagic"
"github.com/lucas-clemente/quic-go/http3"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
@ -484,7 +485,7 @@ func (s *Server) shouldLogRequest(r *http.Request) bool {
}
for _, dh := range s.Logs.SkipHosts {
// logging for this particular host is disabled
if r.Host == dh {
if certmagic.MatchWildcard(r.Host, dh) {
return false
}
}