Skip to content

Instantly share code, notes, and snippets.

@manshu
Created December 29, 2019 22:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save manshu/a01db101452260147ff0691489717557 to your computer and use it in GitHub Desktop.
Save manshu/a01db101452260147ff0691489717557 to your computer and use it in GitHub Desktop.
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_read_timeout 1m;
proxy_connect_timeout 1m;
proxy_pass http://127.0.0.1:3000; # set the address of the Node.js
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment