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:
http://127.0.0.1/bar
Instead I'd like to preserve the original request, and get:
http://127.0.0.1/foo/bar
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With