Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reverse proxy with mod_proxy, preserve original request URL

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?

like image 921
Mark Avatar asked May 27 '11 22:05

Mark


1 Answers

Fixed with:

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080/foo
ProxyPassReverse /foo http://127.0.0.1:8080/foo
like image 128
Mark Avatar answered Nov 19 '22 19:11

Mark