Nginx系列-下载服务器
将nginx作为下载服务器,在location添加autoindex on
server { listen 80; server_name localhost; access_log logs/access.log main; location / { root html; index index.html index.htm; } location ~ ^/download/ { root /usr/local/nginx/html; autoindex on; #开启目录浏览下载功能
autoindex_exact_size off; #指定文件大小显示为M默认是b
autoindex_localtime on; 开启以服务器本地时区显示文件修改日期 默认为 off,以 GMT 时间作为显示的文件时间; } }

浙公网安备 33010602011771号