Skip to content

Instantly share code, notes, and snippets.

@jamiemcconnell
Created August 24, 2015 19:38
Show Gist options
  • Save jamiemcconnell/3ce501b346e673e425a2 to your computer and use it in GitHub Desktop.
Save jamiemcconnell/3ce501b346e673e425a2 to your computer and use it in GitHub Desktop.
upstream frontend {
server upstreamServerPlaceholder;
}
server {
listen 80;
listen 443;
server_name serverNamePlaceholder;
ssl on;
ssl_certificate /ssl.crt;
ssl_certificate_key /ssl.key;
client_max_body_size 0;
location / {
proxy_pass http://frontend;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment