Skip to content

Instantly share code, notes, and snippets.

@larsks
Created November 19, 2010 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larsks/706824 to your computer and use it in GitHub Desktop.
Save larsks/706824 to your computer and use it in GitHub Desktop.
An example virtual host
<VirtualHost *:443>
ServerName www.example.com
ServerAlias www
DocumentRoot /var/www/sites/www/example.com/html
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/WILDCARD.example.com.crt
SSLCertificateKeyFile /etc/pki/tls/private/WILDCARD.example.com.key
SSLCertificateChainFile /etc/pki/tls/certs/geotrust-ssl-chain.crt
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment