带有位置指令的反向代理

时间:2018-09-04 11:10:04

标签: reverse-proxy

我有一个反向代理,它需要根据位置指令将流量重定向到后端服务器。例如:

    https://rproxy.example.com/fileserver points to https://fileserver.example.com  


    https://rproxy.example.com/mail points to https://mail.example.com    

我愿意使用nginx或apache作为反向代理

1 个答案:

答案 0 :(得分:0)

编辑Apache conf文件并进行如下设置。

    ProxyPass /fileserver/ http://fileserver.com:8080/fileserver/
    ProxyPassReverse /fileserver/ http://fileserver:8080/fileserver/

    ProxyPass /mailserver http://mailserver.com:8090/
    ProxyPassReverse /mailserver http://mailserver.com:8090/