download.9981.tech.conf 495 B

12345678910111213141516171819202122232425262728
  1. server {
  2. listen 80;
  3. server_name download.9981.tech; # 任意IP/域名访问
  4. root /usr/share/nginx/html/download;
  5. index index.html;
  6. location / {
  7. autoindex on;
  8. autoindex_exact_size off;
  9. autoindex_localtime on;
  10. autoindex_format html;
  11. add_header Accept-Ranges bytes;
  12. expires 1d;
  13. add_header Cache-Control "public, max-age=86400";
  14. sendfile on;
  15. tcp_nopush on;
  16. tcp_nodelay off;
  17. # 仅允许下载(禁止上传/修改)
  18. limit_except GET HEAD {
  19. deny all;
  20. }
  21. }
  22. }