Created
June 30, 2016 17:30
-
-
Save cellobnu/ea54d35e96837eab7ece77779b72cf4a to your computer and use it in GitHub Desktop.
default-ssl.conf
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
<IfModule mod_ssl.c> | |
<VirtualHost _default_:443> | |
ServerAdmin [email protected] | |
ServerName camicie.com.br | |
ServerAlias www.camicie.com.br | |
DocumentRoot /var/www/html/ | |
<Directory /var/www/html/> | |
AllowOverride All | |
Require all granted | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/errorSSL.log | |
CustomLog ${APACHE_LOG_DIR}/accessSSL.log combined | |
SSLEngine on | |
SSLCertificateFile /home/admin/camicie_com_br.crt | |
SSLCertificateKeyFile /home/admin/camicie_com_br.key | |
SSLCACertificateFile /home/admin/intermediate.crt | |
<FilesMatch "\.(cgi|shtml|phtml|php)$"> | |
SSLOptions +StdEnvVars | |
</FilesMatch> | |
<Directory /usr/lib/cgi-bin> | |
SSLOptions +StdEnvVars | |
</Directory> | |
BrowserMatch "MSIE [2-6]" \ | |
nokeepalive ssl-unclean-shutdown \ | |
downgrade-1.0 force-response-1.0 | |
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown | |
</VirtualHost> | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment