default (342B)
1 server { 2 listen 80; 3 server_name localhost; 4 5 location / { 6 root /usr/share/nginx/html; 7 autoindex on; # Enable directory listing 8 autoindex_exact_size off; # Optional: Disable showing file sizes in exact format 9 autoindex_localtime on; # Optional: Show file modification times in local time 10 } 11 } 12