Last active
March 6, 2018 04:28
-
-
Save creeefs/ba47436571cbef9714bc7c2e3e9727b4 to your computer and use it in GitHub Desktop.
/usr/local/etc/nginx/nginx.conf
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
| http { | |
| include mime.types; | |
| default_type application/octet-stream; | |
| sendfile on; | |
| keepalive_timeout 65; | |
| server { | |
| listen 8888; | |
| location / { | |
| proxy_pass http://127.0.0.1:3000; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment