Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80 default_server;
- root /var/www/html/;
- index index.html index.htm index.nginx-debian.html;
- server_name _;
- location / {
- # First attempt to serve request as file, then
- # as directory, then fall back to displaying a 404.
- #try_files $uri $uri/ =404;
- try_files $uri $uri/ /index.html;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement