Skip to content

Instantly share code, notes, and snippets.

@ricardofalasca
Created March 23, 2019 08:21
Show Gist options
  • Save ricardofalasca/420587fb6e8b2c592920b570bebe6c2c to your computer and use it in GitHub Desktop.
Save ricardofalasca/420587fb6e8b2c592920b570bebe6c2c to your computer and use it in GitHub Desktop.
SSL Params Configuration for Nginx
# from https://cipherli.st/
# and https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html
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 HSTS header for now
#add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload";
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;
ssl_dhparam /your-path/dhparam.pem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment