Hi,
I've set up Apache as a reverse proxy for two different backends, via
mod_proxy_uwsgi and mod_proxy_http, respectively.
My setup looks like:
<Location /somepath/>
ProxyPass http://localhost:8000/ retry=0
ProxyPassReverse http://localhost:8000/somepath/
</Location>
<Location />
ProxyPass uwsgi://localhost:8001/ retry=0
ProxyPassReverse uwsgi://localhost:8001/
</Location>
According to http://httpd.apache.org/docs/2.4/mod/mod_proxy.html#proxypass
, rules are processed in order of configuration, so more specific URLs
should come first. But requests to http://myserver/somepath/ are going to
the second, uwsgi backend - what am I missing?
Apache version is 2.4.25.
Kind regards, Til
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]