Created
August 24, 2015 19:38
-
-
Save jamiemcconnell/3ce501b346e673e425a2 to your computer and use it in GitHub Desktop.
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 characters
| 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