# 六.防盗链
# 1.防盗链作用
- 防止网站资源被盗用
- 保证信息安全
- 防止流量过剩
- 区别哪些请求是非正常的用户请求
- 使用 http_refer 防盗链
location ~ .*\.(jpg|png|gif)$ {
expires 1h;
gzip off;
gzip_http_version 1.1;
gzip_comp_level 3;
gzip_types image/jpeg image/png image/gif;
valid_referers none blocked 47.104.184.134;
if ($invalid_referer) {
return 403;
}
root /data/images;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13