Thanks Antonio.<div><br></div><div>Now the problem is with the images, css and others thinks.</div><div>When the site is loaded, it try to download from <a href="http://www.example.com/" target="_blank">www.example.com</a>, and not from <a href="http://www.proxy.com">www.proxy.com</a>.</div>

<div><br></div><div>For example, the browser try to get the <a href="http://www.example.com/menu.css">www.example.com/menu.css</a>, but the correct is try to download the <a href="http://www.proxy.com/menu.css">www.proxy.com/menu.css</a>.</div>

<div><br></div><div>How to fix it?</div><div><br></div><div>Thanks</div><div><br><div class="gmail_quote">On Mon, Jan 16, 2012 at 6:06 PM, António P. P. Almeida <span dir="ltr"><<a href="mailto:appa@perusio.net">appa@perusio.net</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On 16 Jan 2012 19h56 WET, <a href="mailto:robsonpeixoto@gmail.com">robsonpeixoto@gmail.com</a> wrote:<br>


<br>
> Hi,<br>
><br>
> I need to make a proxy solution. But I having some problems.<br>
><br>
> When the type <a href="http://www.example.com/delivery/a/b/c" target="_blank">www.example.com/delivery/a/b/c</a> I need to make a proxy<br>
> to <a href="http://www.proxy.com/delivery/a/b/c/?var1=A&var2=B" target="_blank">www.proxy.com/delivery/a/b/c/?var1=A&var2=B</a><br>
><br>
> So a did this configuration<br>
><br>
> location /delivery {<br>
> subs_filter <a href="http://www.example.com/$uri" target="_blank">http://www.example.com/$uri</a><br>
> <a href="http://www.proxy.com/$uri/?var1=A&var2=B" target="_blank">http://www.proxy.com/$uri/?var1=A&var2=B</a>;<br>
> proxy_pass <a href="http://www.proxy.com/$uri/?var1=A&var2=B" target="_blank">http://www.proxy.com/$uri/?var1=A&var2=B</a>;<br>
> }<br>
><br>
> Why it not working ?<br>
<br>
</div>Because the HTTPSubModule replaces something on the *request body* not<br>
on the configuration.<br>
<br>
I suppose you want something like this:<br>
<br>
server {<br>
   server_name <a href="http://www.example.com" target="_blank">www.example.com</a>;<br>
<br>
   location /delivery {<br>
       proxy_pass <a href="http://www.proxy.com" target="_blank">http://www.proxy.com</a>$uri/?var1=A&var2=B;<br>
   }<br>
}<br>
<br>
$uri already starts with a '/'.<br>
<br>
--- appa<br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Robson Roberto Souza Peixoto<br>Robinho<br>Master in Computer Science, University of Campinas<br>Linux Counter #395633<br>IRC: robsonpeixoto<br>Twitter: <a href="http://twitter.com/rrspba" target="_blank">http://twitter.com/rrspba</a><br>

github: <a href="https://github.com/robsonpeixoto" target="_blank">https://github.com/robsonpeixoto</a><br>
</div>