Mark
Mark

Reputation: 70020

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?

Upvotes: 8

Views: 18360

Answers (1)

Mark
Mark

Reputation: 70020

Fixed with:

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080/foo
ProxyPassReverse /foo http://127.0.0.1:8080/foo

Upvotes: 8

Related Questions