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;
      }
    }
相關文章
相關標籤/搜索