首页 > 系统相关 >nginx配置文件下载

nginx配置文件下载

时间:2022-10-03 14:45:05浏览次数:54  
标签:文件大小 配置文件 autoindex header Content nginx file 下载

location /file/{
            alias /data/access/;
            add_header Content-Disposition: "attachment";
            add_header Content-Type application/octet-stream;
            autoindex off; # 开启目录浏览功能
            autoindex_exact_size off; # 关闭详细文件大小统计,让文件大小显示MB,GB单位,默认为b
            autoindex_localtime on; # 开启以服务器本地时区显示文件修改日期
        }
下载/data/access目录下的1.txt文件
http://ip地址/file/1.txt

 

标签:文件大小,配置文件,autoindex,header,Content,nginx,file,下载
From: https://www.cnblogs.com/ki16/p/16750509.html

相关文章