You are here: Sysadmin > ApacheReverseProxy
Setting up an Apache reversy proxy for Mir sites including HTTPS
See also
MirrorHowTo and
SquidReverseProxy
Table of content :
HTTPS VirtualHost
# Editor: vim:syn=apache
<VirtualHost *:443>
ServerName www.indymedia.org.uk
SSLEngine on
SSLProxyEngine on
SSLCipherSuite HIGH
SSLProtocol all -SSLv2
SSLCertificateFile /etc/pki/tls/certs/localhost.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
ProxyPass / https://204.13.164.124/
ProxyPassReverse / https://204.13.164.124/
# add log stuff
</VirtualHost>
to top