nginx配置直接下载文件

server绑定的默认80端口 

location配置

    location ~ ^/file  {
        if ($request_filename ~* ^.*?\.(txt|doc|pdf)$){
                add_header Content-Disposition: 'attachment';
                add_header  Content-Type application/octet-stream;
        }        
        root /home/wangjinyu;

测试文件下载链接:http://66.42.36.181/file/test.txt

就会下载/home/wangjinyu/file路径里的test.txt文件

发布了115 篇原创文章 · 获赞 34 · 访问量 9万+

猜你喜欢

转载自blog.csdn.net/u011519550/article/details/104419016
今日推荐