ПРОЕКТЫ 


  АРХИВ 


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]

Re: Re[2]: Не кешировать опред еленную страницу


  • To: nginx-ru@xxxxxxxxx
  • Subject: Re: Re[2]: Не кешировать опред еленную страницу
  • From: Алферов Василий <vasilii.alferov@xxxxxxxxx>
  • Date: Sat, 26 Mar 2011 17:55:30 +0600
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=Bl0dNcNA9ZW2COkSEZuy6BhZGaabnYA71Ez6Lw1kdME=; b=A5gyxwL6iZy2iSHIJ6rPtCQOpmryJTkN37m4+ZrfdNHDaMHKeIvMzjqOyEUyEsyk1x XvFGeYJL+SrFioWDZdlzI6LY9Y05mG5ayWTC1VRiFFnYw+nupx/TrOBNoViM1TeNsf7I R3a28VwlUdTS/VMn0faZITkaUDVNiJK9zDXUA=
  • 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 :cc:content-type; b=t51XLy92R3RDa0vISy5iNdg6Um27bpoAITCK7Prn7Rx/3Fjg8mN6vaw1cpGbZn6Xqh l8WdiDav0TpTZnlpOvrPlJj3h05Kyjj6ZyISlMBnPpmG6Mjjf2HHgeFgXM3w+H3B+Z8h 10tfA5nd46Q2kruEQxcYkwp4lhrqPl0o8xyG4=
  • In-reply-to: <E1Q3EWe-0004O6-00.foxr-mail-ru@xxxxxxxxxxxx>
  • References: <E1Q2tE2-0000NJ-00.foxr-mail-ru@xxxxxxxxxxxx> <20110325101517.GB3834@xxxxxxxxx> <E1Q3EWe-0004O6-00.foxr-mail-ru@xxxxxxxxxxxx>

http://sysoev.ru/nginx/docs/http/ngx_http_proxy_module.html#proxy_cache_bypass

сделайте еще один map и укажите оба в  proxy_cache_bypass и proxy_nocache

2011/3/26 Александр Рочев <foxr@xxxxxxx>
Сапсибо Игорь, помогло.
А если у меня есть еще переменная, которую я не хочу кешировать $arg_order_custinfo - как сделать чтобы он обе учитывал? Два map нельзя, учитывает последний.


Fri, 25 Mar 2011 13:15:17 +0300 письмо от Igor Sysoev <igor@xxxxxxxxx>:

> On Fri, Mar 25, 2011 at 01:41:54AM +0300, Александр Рочев wrote:
> > Доброй ночи всем.
> > Включил кеширование с помощью nginx.
> >
> > Мне необходимо не кешировать админку и корзину.
> >
> > Написал:
> > location ~ (admin.php|index.php?shopping_cart=yes) {
> > proxy_pass   (http://127.0.0.1:2002;)   (http://127.0.0.1:2002;)
> http://127.0.0.1:2002; (http://127.0.0.1:2002;)
> > proxy_redirect off;
> > proxy_set_header Host $http_host;
> > proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> > proxy_set_header X-Real-IP $remote_addr;
> > }
> >
> > Админка не кешируется, а корзина попадает в кеш. Подскажите как сделать так,
> чтобы страница index.php?shopping_cart=yes не кешировалась?
> > Спасибо.
>
> map $arg_shopping_cart  $nocache {
> default             "";
> yes                 11;
> }
>
> server {
>
> proxy_redirect off;
> proxy_set_header Host $http_host;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> proxy_set_header X-Real-IP $remote_addr;
>
> location / {
> proxy_pass   http://127.0.0.1:2002;
> proxy_cache  ...
> }
>
> location = /admin.php {
> proxy_pass   http://127.0.0.1:2002;
> }
>
> location = /index.php {
> proxy_pass   http://127.0.0.1:2002;
> proxy_cache  ...
> proxy_cache_bypass   $nocache;
> proxy_nocache        $nocache;
> }
>
>
> --
> Игорь Сысоев
> http://sysoev.ru
>
> _______________________________________________
> nginx-ru mailing list
> nginx-ru@xxxxxxxxx
> http://nginx.org/mailman/listinfo/nginx-ru
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.