支持https的apache反向代理设置
<VirtualHost *:443>
<IfModule mod_proxy.c>
ProxyRequests Off
SSLProxyEngine on
</IfModule>
ServerName www.domain.com
ServerAdmin webmaster@localhost
ProxyPass / https://192.168.1.8/
ProxyPassReverse / https://192.168.1.8/
</VirtualHost>