Skip to content

Instantly share code, notes, and snippets.

@nbeguier
Created September 5, 2018 18:20
Show Gist options
  • Save nbeguier/2f685a4d9900d1ba720790fcf7a3fef2 to your computer and use it in GitHub Desktop.
Save nbeguier/2f685a4d9900d1ba720790fcf7a3fef2 to your computer and use it in GitHub Desktop.
Apache : Logjam protection
# LOGJAM protection
## All TLS accepted, EECDH/EDH key exchange ciphers, force cipher order and use of 4096-bits group DH
SSLProtocol all -SSLv3 -SSLv2
SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH EDH+aRSA !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4 !SEED"
SSLHonorCipherOrder on
SSLOpenSSLConfCmd DHParameters "/etc/ssl/certs/dhparam.pem"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment