Created
August 24, 2015 19:38
-
-
Save jamiemcconnell/3ce501b346e673e425a2 to your computer and use it in GitHub Desktop.
Revisions
-
jamiemcconnell created this gist
Aug 24, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ 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; } }