<div dir="ltr">Hi,<div><br></div><div>I don't think so, it should always be the first field of the URI but it would be a random string. I have to proxy pass and rebuild the new URI based on location at the original URI only.</div><div><br></div><div>Could you think of a way to do this?</div><div><br></div><div>Thanks so much,</div><div><br></div><div>Meir</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 11, 2019 at 5:46 PM Francis Daly <<a href="mailto:francis@daoine.org">francis@daoine.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Wed, Sep 11, 2019 at 04:45:21PM +0200, meir hazon wrote:<br>
<br>
Hi there,<br>
<br>
> I would also like to pass the message to the proxy without the first part<br>
> of the URI but use the rest of it.<br>
<br>
<a href="http://nginx.org/r/proxy_pass" rel="noreferrer" target="_blank">http://nginx.org/r/proxy_pass</a><br>
<br>
includes the section:<br>
<br>
"""<br>
If the proxy_pass directive is specified with a URI, then when a request<br>
is passed to the server, the part of a normalized request URI matching<br>
the location is replaced by a URI specified in the directive:<br>
  location /name/ {<br>
      proxy_pass <a href="http://127.0.0.1/remote/" rel="noreferrer" target="_blank">http://127.0.0.1/remote/</a>;<br>
  }<br>
"""<br>
<br>
With that sample config, you want two "location"s:<br>
<br>
> <a href="https://yyy.com/bla/aa/er" rel="noreferrer" target="_blank">https://yyy.com/bla/aa/er</a><br>
> if $1 == bla proxy pass to <a href="http://xxx.com/aa/er" rel="noreferrer" target="_blank">http://xxx.com/aa/er</a><br>
> if $1 == vv proxy pass to <a href="http://ccc.com/aa/er" rel="noreferrer" target="_blank">http://ccc.com/aa/er</a><br>
<br>
"/name/" == "/bla/"; "/remote/" == "/".<br>
"/name/" == "/vv/"; "/remote/" == "/".<br>
<br>
Does that work for you?<br>
<br>
        f<br>
-- <br>
Francis Daly        <a href="mailto:francis@daoine.org" target="_blank">francis@daoine.org</a><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div>