diff options
author | Francis Lavoie <lavofr@gmail.com> | 2022-06-22 15:10:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 15:10:14 -0400 |
commit | 98468af8b6224d29431576fe30a7d92a8676030d (patch) | |
tree | 85a8eefb798af3d02b897545e305f76b97982557 /caddytest/integration/caddyfile_adapt | |
parent | 25f10511e7ef80c10493519499c479f6ffa49a0f (diff) |
reverseproxy: Fix double headers in response handlers (#4847)
Diffstat (limited to 'caddytest/integration/caddyfile_adapt')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/forward_auth_authelia.txt | 26 | ||||
-rw-r--r-- | caddytest/integration/caddyfile_adapt/forward_auth_rename_headers.txt | 26 |
2 files changed, 0 insertions, 52 deletions
diff --git a/caddytest/integration/caddyfile_adapt/forward_auth_authelia.txt b/caddytest/integration/caddyfile_adapt/forward_auth_authelia.txt index e7cbb0f..a057032 100644 --- a/caddytest/integration/caddyfile_adapt/forward_auth_authelia.txt +++ b/caddytest/integration/caddyfile_adapt/forward_auth_authelia.txt @@ -63,32 +63,6 @@ app.example.com { ] } ] - }, - { - "routes": [ - { - "handle": [ - { - "exclude": [ - "Connection", - "Keep-Alive", - "Te", - "Trailers", - "Transfer-Encoding", - "Upgrade" - ], - "handler": "copy_response_headers" - } - ] - }, - { - "handle": [ - { - "handler": "copy_response" - } - ] - } - ] } ], "handler": "reverse_proxy", diff --git a/caddytest/integration/caddyfile_adapt/forward_auth_rename_headers.txt b/caddytest/integration/caddyfile_adapt/forward_auth_rename_headers.txt index bc2d95b..6522817 100644 --- a/caddytest/integration/caddyfile_adapt/forward_auth_rename_headers.txt +++ b/caddytest/integration/caddyfile_adapt/forward_auth_rename_headers.txt @@ -55,32 +55,6 @@ forward_auth localhost:9000 { ] } ] - }, - { - "routes": [ - { - "handle": [ - { - "exclude": [ - "Connection", - "Keep-Alive", - "Te", - "Trailers", - "Transfer-Encoding", - "Upgrade" - ], - "handler": "copy_response_headers" - } - ] - }, - { - "handle": [ - { - "handler": "copy_response" - } - ] - } - ] } ], "handler": "reverse_proxy", |