I've configured a reverse proxy using mod_proxy (Apache2) listening on 127.0.0.1:80, that proxies all the request to 127.0.0.1:8080
So I've configured mod_proxy like:
ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080
ProxyPassReverse /foo http://127.0.0.1:8080
When I request http://127.0.0.1/foo/bar
, the app listening on 127.0.0.1:8080 gets the following request URL from mod_proxy:
Instead I'd like to preserve the original request, and get:
How can I do this?
Fixed with:
ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080/foo
ProxyPassReverse /foo http://127.0.0.1:8080/foo