So I'm looking at the proxy_pass directive at <a href="http://wiki.nginx.org/HttpProxyModule">http://wiki.nginx.org/HttpProxyModule</a><br><br>It mentions URI processing.<br><br><p>For these cases of URI it is transferred without the mapping.
</p><p>Furthermore, it is possible to indicate so that URI should be 
transferred in the same form as sent by client, not in processed form. 
During processing:
</p>
<ul><li> two or by more slashes are converted into one slash: "//" -- "/";
</li><li> references to the current directory are removed: "/./" -- "/";
</li><li> references to the previous catalog are removed: "/dir /../" -- "/".
</li></ul><p><br></p><p>However, I can't seem to find a way to turn this on or off.  The example given is <br></p><div dir="ltr" class="mw-geshi" style="text-align:left"><div class="nginx source-nginx"><pre class="de1">
<a href="http://wiki.nginx.org/NginxHttpProxyModule#proxy_pass"><span class="kw21">proxy_pass</span></a> <a href="http://wiki.nginx.org/NginxHttpCoreModule#http"><span class="kw3">http</span></a>://localhost:<span class="nu0">8000</span>/uri/<span class="sy0">;<br>
</span><br></pre></div></div>But that doesn't work.  I even tried using $request_uri? and that didn't work.<br><br>So how do I configure whether or not nginx does the processing?<br><br>Thanks.<br>