我正在处理apache forward-proxy,我想处理不在端口443上的https,例如https://example.com:14430。但它没有用。我该如何配置配置文件?
这就是现在的http.conf:
<VirtualHost *:8002>
ProxyRequests On
# ProxyVia On
# <Proxy *>
# Order allow,deny
# Allow from all
# </Proxy>
</VirtualHost>
谢谢!
答案 0 :(得分:0)
我很抱歉这么晚回答这个问题。其实我已经解决了。正确的配置文件是这样的:
<VirtualHost *:8002>
ProxyRequests On
ProxyVia On
<Proxy https://open.weixin.qq.com>
Order allow,deny
Allow from all
</Proxy>
AllowCONNECT 443 563 10080 8443
</VirtualHost>