From e23e7dd83a75b073773c3bc1e57bdb36c27bcc3f Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Tue, 10 Mar 2026 16:43:41 +0400 Subject: Proxy authentication definitions. --- src/http/ngx_http_request.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/http/ngx_http_request.c') diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 41c1cda04..7305af132 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -152,6 +152,10 @@ ngx_http_header_t ngx_http_headers_in[] = { offsetof(ngx_http_headers_in_t, authorization), ngx_http_process_unique_header_line }, + { ngx_string("Proxy-Authorization"), + offsetof(ngx_http_headers_in_t, proxy_authorization), + ngx_http_process_unique_header_line }, + { ngx_string("Keep-Alive"), offsetof(ngx_http_headers_in_t, keep_alive), ngx_http_process_header_line }, -- cgit