0

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

rtacconi
  • 745
  • 4
  • 14
  • 28

1 Answers1

3

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
carson
  • 1,630
  • 11
  • 15