2

我有一个位于转发代理后面的 Internet 连接。我必须使用代理服务器 IP 地址和端口号才能连接到 Internet。我在我的机器上安装了 Apache Web 服务器。Apache 配置为使用 ProxyPass(意思是- 它必须从外部站点获取文档)。但是转发代理阻止任何此类请求。如何设置 apache 以使用转发代理服务器的 ip 地址和端口号来访问外部 url。

4

1 回答 1

4

如果你想通过公司代理从你的机器上代理一个站点,就像我最近为安装 Centos 所做的那样,你可以在你的 apache 配置中使用它:

ProxyPass       /centos1/  http://ftp.riken.jp/

ProxyPassReverse /centos1/ http://ftp.riken.jp/

ProxyRemote http://ftp.riken.jp/ http://{corporate proxy here}:{corporate proxy port}
于 2012-08-03T12:20:25.140 回答