网站对下载文件目录“ protectedFiles ”设置了权限,通过 Nginx 的 X-sendfile 设置了只允许内部访问,外部没法访问,下面是 Nginx 的配置文件:
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|svg)$
{
expires 30d;
add_header Access-Control-Allow-Origin *;
error_log off;
access_log off;
}
location /protectedFiles
{
internal;
alias /wwwroot/protectedFiles/;
}
现在对于一些 protectedFiles 目录下的 zip 或者 rar 的文件,外部访问都正常的返回 404,但是对于 protectedFiles 目录下的图片文件,外部全都能正常访问,我尝试改了下:
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|svg|zip|rar)$
{
expires 30d;
add_header Access-Control-Allow-Origin *;
error_log off;
access_log off;
}
发现 zip 和 rar 文件也可以外部访问了,这是怎么回事?
如果我想实现 protectedFiles 目录下的图片文件的设置为 expires 30d;add_header Access-Control-Allow-Origin *; 同时禁止 protectedFiles 目录下的所有文件禁止外部访问,nginx 该怎么配置?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.