Skip to content

Instantly share code, notes, and snippets.

@Danielwsx64
Created March 30, 2017 13:52
Show Gist options
  • Save Danielwsx64/32cd862506698eae849c3b719eea891a to your computer and use it in GitHub Desktop.
Save Danielwsx64/32cd862506698eae849c3b719eea891a to your computer and use it in GitHub Desktop.
Configuração Certificados Apache
<VirtualHost *:443>
DocumentRoot /var/www/meu_site
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite ALL:!DH:!EXPORT:!RC4:+HIGH:+MEDIUM:!LOW:!aNULL:!eNULL
SSLCertificateFile /etc/apache2/certificados/meu_certificado.com.crt
SSLCertificateKeyFile /etc/apache2/certificados/meu_certificado.com.key
SSLCertificateChainFile /etc/apache2/certificados/root.crt
ServerName meu_site.com
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment