server {
listen 80;
server_name _;
access_log off;
location / {
root /var/www/html;
index index.html;
# 404 error page
error_page 404 /index.html;
}