Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. server {
  2. listen 80;
  3. listen [::]:80
  4. root /var/home/frontend;
  5.  
  6. index index.html index.htm index.nginx-debian.html;
  7.  
  8. server_name DOMÄN;
  9.  
  10. location / {
  11. # First attempt to serve request as file, then
  12. # as directory, then fall back to displaying a 404.
  13. proxy_pass http://localhost:3000;
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement