diff options
Diffstat (limited to 'modules/caddyhttp')
-rw-r--r-- | modules/caddyhttp/encode/zstd/zstd.go | 2 | ||||
-rw-r--r-- | modules/caddyhttp/fileserver/matcher.go | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/modules/caddyhttp/encode/zstd/zstd.go b/modules/caddyhttp/encode/zstd/zstd.go index 1470baf..acebff5 100644 --- a/modules/caddyhttp/encode/zstd/zstd.go +++ b/modules/caddyhttp/encode/zstd/zstd.go @@ -27,7 +27,7 @@ func init() { }) } -// Zstd can create zstd encoders. +// Zstd can create Zstandard encoders. type Zstd struct{} // AcceptEncoding returns the name of the encoding as diff --git a/modules/caddyhttp/fileserver/matcher.go b/modules/caddyhttp/fileserver/matcher.go index 85081ea..17d5c11 100644 --- a/modules/caddyhttp/fileserver/matcher.go +++ b/modules/caddyhttp/fileserver/matcher.go @@ -76,9 +76,8 @@ func (m MatchFile) Match(r *http.Request) bool { if matched { repl.Set("http.matchers.file.relative", rel) repl.Set("http.matchers.file.absolute", abs) - return true } - return false + return matched } // selectFile chooses a file according to m.TryPolicy by appending |