编辑配置文件:
vim /usr/local/nginx/conf/vhosts/test.conf
加入
if ($http_user_agent ~ 'curl|baidu|111111')
{
return 403;
}
若不想区分大小写,可以写为:
if ($http_user_agent ~* 'curl|baidu|111111')
{
return 403;
}