nginx封空user_agent实现封禁迅雷的方法
时间:2022-01-17 10:49:43|栏目:Nginx|点击: 次
以下代码写入 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;
}
复制代码 代码如下:
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;
}
上一篇:TCP socket SYN队列和Accept队列区别原理解析
栏 目:Nginx
下一篇:详解如何修改nginx的默认端口
本文标题:nginx封空user_agent实现封禁迅雷的方法
本文地址:http://www.codeinn.net/misctech/190508.html