nginx.conf 313 B

12345678910111213141516171819202122232425262728
  1. worker_processes 1;
  2. events {
  3. worker_connections 1024;
  4. }
  5. http {
  6. server {
  7. listen 80;
  8. server_name nas.isp;
  9. client_max_body_size 16m;
  10. location / {
  11. expires 1m;
  12. root /usr/local/www/data/;
  13. index index.html index.htm;
  14. }
  15. }
  16. }