apache反向代理

<VirtualHost *:80>
ServerName xxx.zhengfeng.me #访问域名
SSLProxyEngine on
ProxyRequests off
<Proxy *>
    Order allow,deny
    Allow from all
</Proxy>

#被反向代理的网站
ProxyPass / https://test.qq.com/ max=60 disablereuse=On
ProxyPassReverse /  https://test.qq.com/

</VirtualHost>


<VirtualHost *:443>
ServerName xxx.zhengfeng.me
SSLEngine on
SSLCertificateFile /home/xxx.zhengfeng.me_public.crt
SSLCertificateKeyFile /home/xxx.zhengfeng.me.key
SSLCertificateChainFile /home/xxx.zhengfeng.me_chain.crt
Protocols h2 h2c http/1.1

SSLProxyEngine on
  ProxyRequests off
<Proxy *>
    Order allow,deny
    Allow from all
</Proxy>
ProxyPass / https://test.qq.com:700/ max=60 disablereuse=On
ProxyPassReverse / https://test.qq.com:700/


</VirtualHost>


评论
暂无评论

登录后可发表评论

点击登录