Apache通过代理服务器连接

时间:2017-08-20 10:19:21

标签: apache proxy reverse-proxy

目前我已反向启用,如下所示 反向代理

ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /foo http://foo.example.com/bar
ProxyPassReverse /foo http://foo.example.com/bar

所以任何来自我的Apache的请求&#34; / foo&#34;将转发给&#34; http://foo.example.com/bar&#34;。但是现在如果我的Apache只能访问&#34; foo.example.com&#34;通过代理176.77.86.8:8888。我该如何配置它。 通过我的代理使用curl正在按预期工作

curl -x http://176.77.86.8:8888 -L http://foo.example.com/bar

1 个答案:

答案 0 :(得分:0)

搞定了,ProxyRemote就是我要找的东西

ProxyRemote http://foo.example.com http://176.77.86.8:8888