Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Designate a vhost to CORE and make sure it runs SSL.
  • Enable mod_rewrite
  • Enable mod_deflate (optional)
  • Point the DocumentRoot to the 'public' subdirectory of the source, so in this case /var/www/core/trunk/public.
    The vhost can contain one conference, or multiple conferences, in which case you can use the ServerAlias statement. For example:
Code Block
xml
xml
<VirtualHost *:443>

  ServerName core.nren.edu
  ServerAlias myconf2011.nren.edu
  ServerAlias myconf2012.nren.edu
  ServerAlias otherconf2011.nren.edu

  DocumentRoot /var/www/core/public

  SSLEngine on
  SSLCipherSuite 'ALL:!ADH:!EXP:!DES:RC4+RSA:+HIGH:!MEDIUM!SSLv2:@STRENGTH'
  SSLHonorCipherOrder On
  SSLCACertificateFile /etc/ssl/certs/cachain.crt
  SSLCertificateFile /etc/ssl/certs/server.crt
  SSLCertificateKeyFile /etc/ssl/private/server.key
  
</VirtualHost>

...