Skip to content

Instantly share code, notes, and snippets.

@aandrewww
Created September 14, 2018 11:38
Show Gist options
  • Select an option

  • Save aandrewww/88dbe789084cdd0d8ca587ec19927dba to your computer and use it in GitHub Desktop.

Select an option

Save aandrewww/88dbe789084cdd0d8ca587ec19927dba to your computer and use it in GitHub Desktop.

Revisions

  1. aandrewww created this gist Sep 14, 2018.
    18 changes: 18 additions & 0 deletions ssl-params.conf
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_prefer_server_ciphers on;
    ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
    ssl_ecdh_curve secp384r1;
    ssl_session_cache shared:SSL:10m;
    ssl_session_tickets off;
    ssl_stapling on;
    ssl_stapling_verify on;
    resolver 8.8.8.8 8.8.4.4 valid=300s;
    resolver_timeout 5s;
    # Disable preloading HSTS for now. You can use the commented out header line that includes
    # the "preload" directive if you understand the implications.
    #add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
    add_header Strict-Transport-Security "max-age=63072000; includeSubdomains";
    add_header X-Frame-Options DENY;
    add_header X-Content-Type-Options nosniff;

    ssl_dhparam /etc/ssl/certs/dhparam.pem;