From e8368d6769791774ad6511bc851b0fe443503d8b Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Wed, 13 Jul 2022 12:16:54 -0600 Subject: [PATCH] caddyfile: Clarify bad query string match behavior --- src/docs/markdown/caddyfile/matchers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/docs/markdown/caddyfile/matchers.md b/src/docs/markdown/caddyfile/matchers.md index 5b5c01c..ae3c3db 100644 --- a/src/docs/markdown/caddyfile/matchers.md +++ b/src/docs/markdown/caddyfile/matchers.md @@ -538,6 +538,8 @@ By query string parameters. Should be a sequence of `key=value` pairs. Keys are There can be multiple `query` matchers per named matcher, and pairs with the same keys will be OR'ed together. +Illegal query strings (bad syntax, unescaped semicolons, etc.) will fail to parse and thus will not match. + #### Example: Match requests with a `sort` query parameter with the value `asc`: