nginx代理静态资源的时候像png、jpg等等点击下载,不是浏览器打开需要设置

【nginx代理静态资源的时候像png、jpg等等点击下载,不是浏览器打开需要设置】location / {
if ($request_filename ~* ^.*?.(html|doc|pdf|zip|docx)$) {
add_header Content-Disposition attachment;
add_header Content-Type application/octet-stream;
}
}

    推荐阅读