# Lil static file server server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; autoindex on; location / { root /home/app/; proxy_max_temp_file_size 0; index index.html; } }