Advertisement
Guest User

Untitled

a guest
Jun 12th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.20 KB | None | 0 0
  1. root /var/www/website;
  2.  
  3.  
  4. index index.html index.htm index.nginx-debian.html;
  5. server_name website;
  6.  
  7. location / {
  8.   try_files $uri $uri/ @backend;
  9. }
  10.  
  11. @backend {
  12.   proxy_pass http://localhost:8888;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement