Syntax: | proxy_pass_request_headers |
---|---|
Default: | proxy_pass_request_headers on; |
Context: | http , server , location |
Indicates whether the header fields of the original request are passed to the proxied server.
location /x-accel-redirect-here/ { proxy_method GET; proxy_pass_request_headers off; proxy_pass_request_body off; proxy_pass ... }
See also the proxy_set_header and proxy_pass_request_body directives.
Please login to continue.