Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: nginx memcached error.log
- To: nginx-ru@xxxxxxxxx
- Subject: Re: nginx memcached error.log
- From: Roxis <roxis@xxxxxxx>
- Date: Fri, 15 Aug 2008 12:41:59 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :references:in-reply-to:x-face:x-mailer:mime-version:content-type :content-transfer-encoding:content-disposition:message-id:sender; bh=gd1HRrUSV3rEGHJSN6lGSgYIvHcNSOmODzv5lvD85Wo=; b=nhRCeZTiroc0m0HjrrCVhaBSvhEzFTshcL+Ufp7bU6YoDCLFrqwm1YkuvHeo2xhR4i NvzoZ9hbxCpShXa20cXrA7lgN5s6SeJX0iguJtF9RZLFpLQK4aHs0UgKxm+iJ15wgK+S Y1i0UPTJiqMIPZSgPmiHGZkfs4zPhxybBBOwQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:references:in-reply-to:x-face:x-mailer :mime-version:content-type:content-transfer-encoding :content-disposition:message-id:sender; b=HvLs0CBVhatmw4bPAax0Nq7cKVg5NU4oD840bls6qRyJoEc8/JeZM3EcF/oCd7xsOe X62q7b59pLhdmj/AUXyz7+s3y4nArA4hp3IG0aBXABWMTqO8BZGjAX11lXCkQATR8mU3 YKoF6K8OaLVoovxkvsjRYWPnrM7rqdJZZCmco=
- In-reply-to: <48A55AEA.6040601@xxxxxxxx>
- References: <48A55AEA.6040601@xxxxxxxx>
On Friday 15 August 2008, Антон Алехин wrote:
> Добрый день!
>
> Соединил nginx с memcached, все работает, однако в error.log пишется
> ошибка:
>
> 2008/08/15 14:04:33 [error] 7922#0: *747 open()
> "/usr/local/nginx/html/get_comments.php" failed (2: No such file or
> directory), client: 127.0.0.1, server: localhost, request: "GET
> /get_comments.php?t=1218793745&r=7209 HTTP/1.1", host: "localhost",
> referrer: "http://localhost/"
>
>
> конфиг:
>
> location / {
> ssi on;
> root /var/www/;
> index index.html index.php;
> }
>
> location ~* \.php$ {
> if ($request_uri ~* get_data\.php\?t=(\d+)\&r=\d+$) {
> add_header Content-Type "text/html;
> charset=windows-1251"; set $memcached_key "$1";
> memcached_pass 127.0.0.1:11211;
> error_page 404 405 502 504 = @fastcgi;
> }
> error_page 404 405 502 504 = @fastcgi;
> }
>
> location @fastcgi {
> fastcgi_pass 127.0.0.1:8888;
> ...
>
> Т. е. если запрос не проходить по условию if ($request_uri ~*
> get_data\.php\?t=(\d+)\&r=\d+$), он почему-то ищется в default root и не
> найдя там файла по 404 отправляет запрос к fastsgi. Работать, то оно
> работает, но растущий error.log напрягает, видимо что-то все таки
> неправильно сделано.
>
> Как можно исправить ситуацию?
прописать в location ~* \.php$
fastcgi_pass 127.0.0.1:8888;
...
|