Advertisement
Guest User

Untitled

a guest
Oct 9th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. # Baseline setting to Include for SSL sites
  2.  
  3. SSLEngine on
  4.  
  5. # Intermediate configuration, tweak to your needs
  6. # Changed to TLSv1.2 Cipher Suite
  7. SSLProtocol TLSv1.2
  8. SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS"
  9. SSLHonorCipherOrder on
  10. SSLCompression off
  11. SSLOptions +StrictRequire
  12. # Add HSTS support
  13. Header always set Strict-Transport-Security "max-age=63072000; includeSubdomains;"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement