<div dir="ltr"><div><div><div><div>I have a situation where I receive a request like:<br><br></div><a href="http://device.healthcheck.com/ready" target="_blank">http://device.healthcheck.com/<wbr>ready</a><br><br></div>I want this to be sent to a server upstream but keep the full request intact. For example:<br><br>server {<br></div>                resolver 8.8.8.8;<br>                listen 80;<br><br>        location / {<br></div><div>                        // send this too 192.168.10.34<br></div><div>                        proxy_pass $host:$server_port$uri$is_<wbr>args$args;<br>                }<br>}<br><br></div>I know this is probably easy to do but I am not sure how to accomplish this.<br></div>