目 录CONTENT

文章目录

nginx 文件服务下载txt文件

xlong
2024-06-06 / 0 评论 / 0 点赞 / 15 阅读 / 469 字 / 正在检测是否收录...

在nginx配置加入以下内容: 可以让txt文件正常下载

    location ~ /test/ {
		if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$) {
		    add_header Content-Disposition "attachment; filename=$1";
		    add_header Content-Type "application/octet-stream";
		}
	    root  /usr/share/nginx/html/;
		allow all;
		autoindex on;
		charset utf-8;
    }

0

评论区