Welcome! Log In Create A New Profile

Advanced

Re: Disable Cookies Caching?

Ryan Malayter
June 23, 2010 03:56PM
On Wed, Jun 23, 2010 at 12:55 AM, MuFei <mufei4u@gmail.com> wrote:
> Hi,
>
> I just set up Nginx as a proxy to Apache for my vBulletin based site.
> Everything went well till I enabled Nginx caching. Once Nginx caching
> is enabled I'm and all users are no longer unable to log-in to the
> forum due cookie cashing. When I disable caching we are all able to
> log-in as usual.
>
> Is there anyway to completely disable caching for cookies/sessions and
> keep caching for anything else?
>
> Here are my settings for Nginx caching:
>
>        log_format cache '***$time_local '
>                                                '$upstream_cache_status '
>                                                'Cache-Control: $upstream_http_cache_control '
>                                                'Expires: $upstream_http_expires '
>                                                '"$request" ($status) '
>                                                '"$http_user_agent" ';
>        access_log  /var/log/nginx/cache.access.log cache;
>        proxy_cache_path  /var/www/cache levels=1:2 keys_zone=my-cache:8m
> max_size=1000m inactive=7d;
>        proxy_temp_path /var/www/cache/tmp;
>        proxy_buffering on;
>        proxy_cache my-cache;
>        proxy_cache_valid  200 302 304 10m;
>        proxy_cache_valid  301 1h;
>        proxy_cache_valid  404 1m;
>        proxy_cache_valid  any 1m;
>
>
> Also although there are already some caching in the folder
> /var/www/cache, the cache.access.log is empty and has no records in
> it, any idea why is that?

It seems proxy_cache_key is set to default, meaning that the cookie is
not included. So everyone will see the same cached responses for GET
requests, whether they log in or not.

try something like:
proxy_cache_key "$host$request_uri$cookie_sessioncookie";
where "user" is replaced with whatever your session cookie is.

This still may not be usable, though, as you have things configured to
cache all pages for at least 1 minute. That means users will
potentially make a post and then not see any change in the forum
pages. If the forum pages need to be truly dynamic, caching for logged
in users might not be an option.

--
RPM

_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

Disable Cookies Caching?

MuFei June 23, 2010 02:00AM

Re: Disable Cookies Caching?

Ryan Malayter June 23, 2010 03:56PM

Re: Disable Cookies Caching?

nfn June 24, 2010 09:55AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 159
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready