Guest User

Untitled

a guest
May 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # virtual hosts
  2.  
  3. server {
  4. listen 80;
  5. server_nme domain;
  6. root html;
  7. index index.html index.htm;
  8.  
  9. location / {
  10. try_files $uri $uri/ =404;
  11. }
  12. }
Add Comment
Please, Sign In to add comment