diff options
author | Yaacov Akiba Slama <yaslama@gmail.com> | 2022-06-10 18:33:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 09:33:35 -0600 |
commit | aaf6794b31ca790ecc501edf983ebf95a45b3897 (patch) | |
tree | 2c86f30ada2ca95da96c0ad54760b087cf5deb18 /caddytest/integration | |
parent | 1498132ea3c4f01d3be41812dbd02364cb77d263 (diff) |
reverseproxy: Add renegotiation param in TLS client (#4784)
* Add renegotiation option in reverseproxy tls client
* Update modules/caddyhttp/reverseproxy/httptransport.go
Co-authored-by: Matt Holt <mholt@users.noreply.github.com>
Diffstat (limited to 'caddytest/integration')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/reverse_proxy_options.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/caddytest/integration/caddyfile_adapt/reverse_proxy_options.txt b/caddytest/integration/caddyfile_adapt/reverse_proxy_options.txt index fc07698..29f6d23 100644 --- a/caddytest/integration/caddyfile_adapt/reverse_proxy_options.txt +++ b/caddytest/integration/caddyfile_adapt/reverse_proxy_options.txt @@ -24,6 +24,7 @@ https://example.com { max_conns_per_host 5 keepalive_idle_conns_per_host 2 keepalive_interval 30s + renegotiation freely } } } @@ -91,7 +92,9 @@ https://example.com { ] }, "response_header_timeout": 8000000000, - "tls": {}, + "tls": { + "renegotiation": "freely" + }, "versions": [ "h2c", "2" |