diff options
author | Francis Lavoie <lavofr@gmail.com> | 2022-01-04 12:10:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 10:10:11 -0700 |
commit | e9dde230247ec5525d4c3803ff99c97e0dc8e348 (patch) | |
tree | c08a76dcd9efd6ce224250aa9c23a1a81b7fd079 /caddytest/integration/caddyfile_adapt | |
parent | 3fe2c73dd04f7769a9d9673236cb94b79ac45659 (diff) |
headers: Fix `+` in Caddyfile to properly append rather than set (#4506)
Diffstat (limited to 'caddytest/integration/caddyfile_adapt')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/header.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/header.txt b/caddytest/integration/caddyfile_adapt/header.txt index 223839e..34a044d 100644 --- a/caddytest/integration/caddyfile_adapt/header.txt +++ b/caddytest/integration/caddyfile_adapt/header.txt @@ -13,6 +13,10 @@ header @images { Cache-Control "public, max-age=3600, stale-while-revalidate=86400" } + header { + +Link "Foo" + +Link "Bar" + } } ---------- { @@ -121,6 +125,17 @@ ] } } + }, + { + "handler": "headers", + "response": { + "add": { + "Link": [ + "Foo", + "Bar" + ] + } + } } ] } |