Apache 或 Varnish 反向代理至子文件夹

Apache 或 Varnish 反向代理至子文件夹

我有一个域名 site.example.com,我想反向代理 site2.example.com/subfolder 中的 Web 应用。用户应使用 site.example.com/subfolder 访问该应用。这可能吗?我想使用 Apache 或更好的 varnish(不影响 Apache)进行重定向。

谢谢

答案1

除非你的网站流量很大,否则我会使用 Apache。这可以使用mod_proxy代理通行证反向代理密码

最终在 site.example.com 服务器上会变成类似这样的内容:

ProxyRequests On
ProxyVia On
ProxyPass /subfolder http://site2.example.com/subfolder
ProxyPassReverse /subfolder http://site2.example.com/subfolder

相关内容