Created
September 22, 2018 15:34
-
-
Save kerren/8fcf16d1d3c080cac6da5dd3cfdac6ab to your computer and use it in GitHub Desktop.
The nginx setup for the www.entroinfo.xyz and entroinfo.xyz site
This file contains hidden or 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 { | |
| 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