Skip to content

Instantly share code, notes, and snippets.

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 aslamdoctor/0a615113359a157060d8d8cb760094d4 to your computer and use it in GitHub Desktop.
Save aslamdoctor/0a615113359a157060d8d8cb760094d4 to your computer and use it in GitHub Desktop.
Nginx Configurations
server {
listen 80;
listen [::]:80;
server_name mysite.local;
location / {
proxy_pass http://localhost:3000/;
}
}
server {
listen 80;
listen [::]:80;
server_name mysite.local;
location / {
root /var/www/mysite;
index index.html index.htm;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment