Last active
October 27, 2016 13:11
-
-
Save AshikNesin/d093356e3daadff520807adc130af2dc to your computer and use it in GitHub Desktop.
Apache SSL Config
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
<VirtualHost *:443> | |
SSLEngine On | |
SSLCertificateFile /etc/apache2/ssl/__optacredit_com.crt | |
SSLCertificateKeyFile /etc/apache2/ssl/optacredit.com.key | |
SSLCACertificateFile /etc/apache2/ssl/__optacredit_com.ca-bundle | |
ServerAdmin [email protected] | |
ServerName optacredit.com | |
DocumentRoot /var/www/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