Skip to content

Instantly share code, notes, and snippets.

@MattSurabian
Created August 25, 2014 20:18
Show Gist options
  • Save MattSurabian/ad31dc741d190959cd49 to your computer and use it in GitHub Desktop.
Save MattSurabian/ad31dc741d190959cd49 to your computer and use it in GitHub Desktop.
Boiler plate NGINX SSL config for serving a locally running application. Replace everything surrounded with <>.
server {
listen 80;
server_name <FQDN>;
rewrite ^ https://$server_name$request_uri? permanent;
}
server {
listen 443;
ssl on;
ssl_certificate <PATH_TO_CERT>;
ssl_certificate_key <PATH_TO_KEY>;
#enables SSLv3/TLSv1, but not SSLv2 which is weak and should no longer be used.
ssl_protocols SSLv3 TLSv1;
#Disables all weak ciphers
ssl_ciphers ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM;
server_name <FQDN>;
location / {
proxy_pass http://localhost:<APP_PORT>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment