SSL Certificate Setup in Virtual Host
<IfModule mod_ssl.c> | |
<VirtualHost *:443> | |
Include vhosts.d/includes/domain.com.conf | |
SSLEngine on | |
SSLProtocol all -SSLv2 | |
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW | |
SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 | |
SSLCertificateChainFile /var/www/ssl/certificate-authority-default.crt | |
SSLCertificateFile /var/www/ssl/star.domain.com.crt | |
SSLCertificateKeyFile /var/www/ssl/star.domain.com.key | |
</VirtualHost> | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment