Created
March 17, 2019 21:06
-
-
Save rohithreddy/87cbc07a7358a9646c1c27068910658b to your computer and use it in GitHub Desktop.
conf file for running Nginx as reverse proxy
This file contains 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
server { # simple load balancing | |
listen 80; | |
location / { | |
proxy_pass http://localhost:3000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment