I have a domain, site.example.com and I would like to reverse-proxy a web app in site2.example.com/subfolder. Users should access that app by using site.example.com/subfolder. Is it possible? I would like to use Apache or even better varnish (without hitting Apache) to do the redirect.

Thank you

link|improve this question

54% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I would use Apache unless there you have a high traffic site. This can be done using mod_proxy with ProxyPass and ProxyPassReverse.

It will end up being something like on the site.example.com server:

ProxyRequests On
ProxyVia On
ProxyPass /subfolder http://site2.example.com/subfolder
ProxyPassReverse /subfolder http://site2.example.com/subfolder
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.