首页 > 服务器 > Web服务器 > 正文

nginx封空user_agent实现封禁迅雷的方法

2024-09-01 13:45:47
字体:
来源:转载
供稿:网友
以下代码写入 server {....} 内

复制代码 代码如下:


if ($http_user_agent ~ ^$) {
return 503;
}
if ($http_user_agent ~* "Mozilla/4.0/ /(compatible;/ MSIE/ 6.0;/ Windows/ NT/ 5.1;/ SV1;/ .NET/ CLR/ 1.1.4322;/ .NET/ CLR/ 2.0.50727/)") {
return 503;
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表