Skip to topic | Skip to bottom
Home
Sysadmin
Sysadmin.ApacheReverseProxyr1.1 - 13 Mar 2008 - 15:33 - ChrisCtopic end
You are here: Sysadmin > ApacheReverseProxy

Start of topic | Skip to actions

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

You are here: Sysadmin > ApacheReverseProxy

to top

Copyright © 1999-2008 by the contributing authors.
All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding this tool? Send feedback (in English, Francais, Deutsch or Dutch).