Skip to content

Instantly share code, notes, and snippets.

@rohithreddy
Created March 17, 2019 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rohithreddy/87cbc07a7358a9646c1c27068910658b to your computer and use it in GitHub Desktop.
Save rohithreddy/87cbc07a7358a9646c1c27068910658b to your computer and use it in GitHub Desktop.
conf file for running Nginx as reverse proxy
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