Nginx防盗链配置案例

防盗链的含义是网站内容本身不在自己公司的服务器上,而通过技术手段,直接调用其它公司的服务器网站数据,而向最终用户提供此内容。一些小网站盗用高访问量网站的音乐、图片、软件的链接,然后放置在自己的网站中,通过这种方法盗取高访问量网站的空间和流量
网站每天访问量很大,而且占用了很多不必要的带宽,浪费资源,所以必须采取一些限制措施。防盜链其实就是采用服务器端编程技术,通过URL过滤、主机名等实现的防止盗链的软件
例如http:/www.yunwei2.com/index.html/页面,如果没有配置防盗链,别人就能轻而易举地在其网站上引用该页面,就可以用下面的方式配置防盗链
server {
listen 80;
server_name www.yunwei2.com www.yunwei2.info;
access_log logs/yunwei2.log;
location / {
root html/yunwei2;
index index.html index.htm;
}
location ~ .*.(html|htm|gif|jpeg|jpg|bmp|png|ico|txt|js|css)$
{
valid_referers none bloked yunwei2.com .yunwei2.com
root html/img;
if(KaTeX parse error: Expected 'EOF', got '}' at position 92: …es 30d; }̲ } Nginx防盗链…host != ‘
.yunwei1.com’){
return 403;
}

你可能感兴趣的:(Nginx防盗链配置案例)