<div dir="ltr">Hello all,<div>I have a quick question about the usage of IF and auth_request.</div><div>I would like to know if it is possible to use a IF statement to condition the proxy behaviour of one /location depending on the response headers of the sub auth request ...</div><div><br></div><div>location /subrequest/ {<br>    proxy_pass xxx;<br>}<br>location /anyrequest/ {<br>    auth_request /subrequest/;<br><br>    if ($response_header ~ '' ) {<br>      proxy_pass_request_body off;<br>      proxy_set_header Content-Length "";<br>      proxy_pass ...<br>    }<br>    if ($response_header !~ '' ) {<br>      proxy_pass xxx;<br>    }<br>}<br></div><div><br></div><div>Thank You in advance for your Support ...</div><div><br></div><div>Sincerely,</div><div>Vincent</div></div>