diff options
author | Francis Lavoie <lavofr@gmail.com> | 2020-10-31 12:27:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-31 10:27:01 -0600 |
commit | 966d5e6b42fc6da3da8bd39dd6ceceb8f1da3999 (patch) | |
tree | 2b763f98d8673c3d5c8795fbafb1313d091a06d8 /caddytest | |
parent | b66099379d065ec3340cbe147f65dcf0a39e8e52 (diff) |
caddyhttp: Merge header matchers in Caddyfile (#3832)
Diffstat (limited to 'caddytest')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/matcher_syntax.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/matcher_syntax.txt b/caddytest/integration/caddyfile_adapt/matcher_syntax.txt index 53ec023..55c06ea 100644 --- a/caddytest/integration/caddyfile_adapt/matcher_syntax.txt +++ b/caddytest/integration/caddyfile_adapt/matcher_syntax.txt @@ -18,6 +18,13 @@ @matcher6 vars_regexp "{http.request.uri}" `\.([a-f0-9]{6})\.(css|js)$` respond @matcher6 "from vars_regexp matcher without name" + + @matcher7 { + header Foo bar + header Foo foobar + header Bar foo + } + respond @matcher7 "header matcher merging values of the same field" } ---------- { @@ -127,6 +134,27 @@ "handler": "static_response" } ] + }, + { + "match": [ + { + "header": { + "Bar": [ + "foo" + ], + "Foo": [ + "bar", + "foobar" + ] + } + } + ], + "handle": [ + { + "body": "header matcher merging values of the same field", + "handler": "static_response" + } + ] } ] } |