Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Ограничить location uri+агрумен ты через limit req
- To: nginx-ru@xxxxxxxxx
- Subject: Ограничить location uri+агрумен ты через limit req
- From: "igor.goncharenko" <nginx-forum@xxxxxxxx>
- Date: Tue, 02 Nov 2010 05:33:22 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=GPMIa86Ko1hxMB5hwWQ6a6tG57DtZFk8inf8U3pdR/A=; b=lWkAjvJVteJ+pb3HQaxz62TaWzNopLRrirP1GfUpLTBKCWOIuc0r+khDHR01EJ3IuMeu8aM6/NSNhAcgb7HCK4TtIKoiFkffhbUECe+ucyAXbPaxpQcJj6sbU42mnJno;
Hi!
Подскажите, как установить лимит для
таких запросов:
"http://test.host/index.php?command=test_commandPHPSESSION={php session
id}"
Я сделал location, но он не работает, скорее
всего потому, что location работает с uri:
location ~* ^/index.php\?command=test_command&PHPSESSID=
{
proxy_pass http://test.loc;
limit_req zone=test1 burst=5 nodelay;
}
Попробовал через if в location /:
location /
{
proxy_pass http://test.loc;
if ($request_uri ~* "^/index.php\?command=test_command&PHPSESSID=")
{
limit_req zone=test1 burst=5 nodelay;
}
}
но тоже не работает:
# nginx -t
[emerg]: "limit_req" directive is not allowed here in
/usr/local/etc/nginx/test.loc:33
Подскажите, где я ошибаюсь?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,146826,146826#msg-146826
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|