Nginx如何配置防盗链

  • 配置要点
    • none : 允许没有http_refer的请求访问资源;
    • blocked : 允许不是http://开头的,不带协议的请求访问资源;
    • 119.28.190.215 start.igrow.cn : 只允许指定ip/域名来的请求访问资源;
location ~* \.(gif|jpg|swf)$ {
    valid_referers none blocked start.igrow.cn sta.igrow.cn;
    if ($invalid_referer) {
       rewrite ^/ http://$host/logo.png;
    }
}

posted on 2019-07-01 14:07  果然朝辉  阅读(278)  评论(0编辑  收藏  举报

导航