mirror of
https://github.com/nginx/nginx.git
synced 2026-05-13 09:36:42 +00:00
Remove Proxy-Connection HTTP upstream header
As per RFC 9110, this header SHOULD be removed by a proxy. Also, as per RFC 9113, this header MUST be removed when proxying to an HTTP/2 backend.
This commit is contained in:
parent
b761b0485b
commit
00979ba9d8
2 changed files with 3 additions and 0 deletions
|
|
@ -514,6 +514,7 @@ static ngx_keyval_t ngx_http_grpc_headers[] = {
|
|||
{ ngx_string("TE"), ngx_string("$grpc_internal_trailers") },
|
||||
{ ngx_string("Host"), ngx_string("") },
|
||||
{ ngx_string("Connection"), ngx_string("") },
|
||||
{ ngx_string("Proxy-Connection"), ngx_string("") },
|
||||
{ ngx_string("Transfer-Encoding"), ngx_string("") },
|
||||
{ ngx_string("Keep-Alive"), ngx_string("") },
|
||||
{ ngx_string("Expect"), ngx_string("") },
|
||||
|
|
|
|||
|
|
@ -747,6 +747,7 @@ static char ngx_http_proxy_version_11[] = " HTTP/1.1" CRLF;
|
|||
static ngx_keyval_t ngx_http_proxy_headers[] = {
|
||||
{ ngx_string("Host"), ngx_string("$proxy_internal_host") },
|
||||
{ ngx_string("Connection"), ngx_string("") },
|
||||
{ ngx_string("Proxy-Connection"), ngx_string("") },
|
||||
{ ngx_string("Content-Length"), ngx_string("$proxy_internal_body_length") },
|
||||
{ ngx_string("Transfer-Encoding"), ngx_string("$proxy_internal_chunked") },
|
||||
{ ngx_string("TE"), ngx_string("") },
|
||||
|
|
@ -775,6 +776,7 @@ static ngx_str_t ngx_http_proxy_hide_headers[] = {
|
|||
static ngx_keyval_t ngx_http_proxy_cache_headers[] = {
|
||||
{ ngx_string("Host"), ngx_string("$proxy_internal_host") },
|
||||
{ ngx_string("Connection"), ngx_string("") },
|
||||
{ ngx_string("Proxy-Connection"), ngx_string("") },
|
||||
{ ngx_string("Content-Length"), ngx_string("$proxy_internal_body_length") },
|
||||
{ ngx_string("Transfer-Encoding"), ngx_string("$proxy_internal_chunked") },
|
||||
{ ngx_string("TE"), ngx_string("") },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue