Created
August 20, 2014 21:45
-
-
Save atticoos/1d091fe95005c2ebda39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NameVirtualHost *:443 | |
| <IfModule mod_ssl.so> | |
| <VirtualHost *:443> | |
| ServerName yourserver.com | |
| DocumentRoot /var/www/site | |
| SSLEngine on | |
| SSLCertificateFile ssl.crt | |
| SSLCertificateKeyFIle ssl.key | |
| SSLCertificateChainFile chain.crt | |
| </VirtualHost> | |
| </IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment