这个网站的新手,所以我会保持简短:
我目前有:
if ($http_user_agent ~* (A-certain-self-made-User-Agent-here)) {
return 200;
}
效果很好。(通过将 200 切换到 403 进行测试)。
我的问题是:有没有办法:/etc/nginx/sites-enabled/default 让它只允许一个用户代理并拒绝其余的?
我知道这看起来很愚蠢,但这是我想做的事情,(如果可能的话)。 像这样?:
if (http_user_agent ~*(user-agent)) {
return 200;
else
return 403;
}