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