I can't figure out how to setup a forward https proxy in apache. Here is what I have tried:
<VirtualHost *:443>
ServerName server.com
DocumentRoot /path
ProxyRequests On
ProxyVia Off
AllowCONNECT 80 443
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.pem
#<Proxy *>
# AuthUserFile .htpasswd
# AuthType Basic
# AuthName "private"
# <LIMIT GET POST CONNECT>
# require valid-user
# </LIMIT>
#</Proxy>
</VirtualHost>
I've tried it with and without the commented section, and tried various other combinations of commenting and uncommenting various parts of this. The only way I have gotten it to work is to comment out SSLEngine on, which defeats the purpose of what I'm trying to do. I've also tried to use several different combinations of the SSLProxy* functions, but have had no luck with that either.
Could anyone point me in the right direction? The apache documentation hasn't been too helpful for me and I can't even tell if what I am trying to do is supported or possible.
Thanks
Sorry if this is in the wrong forum.