nginx禁止恶意压力测试

在虚拟主机server里添加

if ($http_user_agent ~ ApacheBench|WebBench|Wget)
{
return 403;
}

你可能感兴趣的:(nginx)