static.conf 286 B

12345678910111213141516
  1. # Lil static file server
  2. server {
  3. listen 80;
  4. server_name localhost;
  5. #charset koi8-r;
  6. #access_log /var/log/nginx/host.access.log main;
  7. autoindex on;
  8. location / {
  9. root /home/app/;
  10. proxy_max_temp_file_size 0;
  11. index index.html;
  12. }
  13. }