Skip to content

Instantly share code, notes, and snippets.

@kerren
Created September 22, 2018 15:34
Show Gist options
  • Select an option

  • Save kerren/8fcf16d1d3c080cac6da5dd3cfdac6ab to your computer and use it in GitHub Desktop.

Select an option

Save kerren/8fcf16d1d3c080cac6da5dd3cfdac6ab to your computer and use it in GitHub Desktop.
The nginx setup for the www.entroinfo.xyz and entroinfo.xyz site
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name www.entroinfo.xyz entroinfo.xyz;
location / {
proxy_pass http://localhost:3000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment