server { listen 80; server_name localhost; root /usr/share/nginx/html; location / { autoindex on; autoindex_exact_size off; autoindex_localtime on; autoindex_format html; try_files $uri $uri/ =404; } index index.html index.htm; }