Re: [users@httpd] Order of ProxyPass directives

2019-03-06 Thread Tilman Koschnick
On Wed, March 6, 2019 16:38, Eric Covener wrote: >> 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,

[users@httpd] Order of ProxyPass directives

2019-03-06 Thread Tilman Koschnick
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: ProxyPass http://localhost:8000/ retry=0 ProxyPassReverse http://localhost:8000/somepath/ ProxyPass uwsgi://localhost:8001/ retry=0