ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Кэширование главной стран ицы


  • To: nginx-ru@xxxxxxxxx
  • Subject: Кэширование главной стран ицы
  • From: Андрей Петров <andreyp.kt@xxxxxxxxx>
  • Date: Thu, 12 Aug 2010 18:52:54 +0400
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=UzcIoODGQHh2pMq85odAne8bcIwPcohWWs40aIeK1Ms=; b=juEvO4SBNTYFYokB6Vox5F4ZRhciPxAf1NXzz4XxUlTK9DC8poJefkjKHj+dtsG2PF f+CqYm+FpDzeS1fD5tBofbvq9nQT5R5NceIEtq8lJT4SvkYrFDw003zfYLNwzCdIOudl sLn0VOriw0LlXHTrvjQPTnFfuesQN3RNE/SCs=
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=amSi+xiTpfQEGCclux+b5a1T90KoCIcXduIukb+wgSYQrlV0kiZ62C5TnaxTmGVFHf wDhsDoCKAmI3mC65Qvp77DANzRf1NA+OcNIPsnVEzorDNjd8hUD6I9CKBz7KnRjO3Wer ViHwy5JGc/tP6kEe4Jx9jFTrMCh1WZYUOcuNw=
  • In-reply-to: <AANLkTimdecFqxJAthBu-6Am3zLcuJVOU3G+C=Y0SC-cF@xxxxxxxxxxxxxx>
  • References: <AANLkTimdecFqxJAthBu-6Am3zLcuJVOU3G+C=Y0SC-cF@xxxxxxxxxxxxxx>

nginx/0.8.46 + PHP 5.3.3(fpm)

Конфиг nginx:

server {
listen   80;
server_name  ***.dev;
root   /home/andrey/projects/***.dev/www;
error_log logs/***.error;
index  index.php index.html index.htm;

error_page 502 /502.html;
error_page 504 /502.html;
location  = /{
fastcgi_pass   127.0.0.1:9999;
             fastcgi_index  index.php;
include        fastcgi.conf

fastcgi_cache one;
fastcgi_pass_header Cookie;
fastcgi_ignore_headers Cache-Control Expires;
fastcgi_cache_key "$request_uri";
fastcgi_cache_valid 30s;
fastcgi_cache_bypass $cookie_uid;

}
location ~ \.(jpg|jpeg|gif|png)$ {
error_page 404 = /pictures/index.php;
}
location / {
error_page 404 /error/404/;
rewrite ^/ag_rasprodaga.html$ /rasprodaga/ag_rasprodaga.html permanent;
rewrite ^/(.*)/$ /index.php?$1 last;
rewrite ^/([a-zA-Z0-9/_\-]*)$ /index.php?$1 last;
}

location ~ \.php$ {
   fastcgi_pass   127.0.0.1:9999;
            fastcgi_index  index.php;
            include        fastcgi.conf;
}

}
Задача закэшировать главную страницу не авторизованным пользователям. Кэшируется нормально;), но пока не зайдет авторизованный пользователь, далее всем не авторизованным отдаётся страница 502. 
В error логе 
2010/08/12 18:47:16 [error] 12660#0: *86 upstream prematurely closed connection while reading response header from upstream, client: 127.0.0.1, server: ***.dev, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9999", host: "***.dev"
Подскажите куда копать? Заранее благодарен

-- 
С уважением Andrey Petrov
mail:andreyp.kt@xxxxxxxxx
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.