Created
June 17, 2015 04:33
-
-
Save zvineyard/9b9a1dc96a3b37913cd1 to your computer and use it in GitHub Desktop.
SSL Apache Config
This file contains 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
<VirtualHost *:443> | |
SSLEngine On | |
SSLCertificateFile /etc/apache2/ssl/yourdomain_com.crt | |
SSLCertificateKeyFile /etc/apache2/ssl/yourdomain_com.key | |
SSLCACertificateFile /etc/apache2/ssl/yourdomain_com.cer | |
ServerAdmin [email protected] | |
ServerName www.yourdomain.com | |
DocumentRoot /var/www/yourdomain.com/public_html/ | |
ErrorLog /var/www/yourdomain.com/logs/error.log | |
CustomLog /var/www/yourdomain.com/logs/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment