nginx限制压测软件对本站进行压测
- 开发技术
- 2020-05-08
- 715
- 0
开发项目自己需要压测,但是不希望他人压测自己的项目,nginx可以判断user_agent标识符限制具体配置如下
server
{
listen 80;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/laravel/public;
if ($http_user_agent ~ ApacheBench|WebBench|Java/|http_localhost_revalidate|wget) {
return 403;
}
}
主要是这句,注意if后面的空格
if ($http_user_agent ~ ApacheBench|WebBench|Java/|http_localhost_revalidate|wget) {
return 403;
}