支持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>

原文地址:https://www.cnblogs.com/uniqid/p/5699278.html