Created
April 7, 2019 14:04
-
-
Save sj82516/3d905f00ae8d3bfb734cedf0a618614d 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
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| keepalive_timeout 65; | |
| server { | |
| listen 80; | |
| location / { | |
| proxy_pass http://host.docker.internal:3000; | |
| proxy_http_version 1.1; | |
| proxy_set_header Host $host; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment