9 messages in ru.sysoev.nginxRe: nginx and IE
FromSent OnAttachments
just startingJan 27, 2008 11:58 am 
RoxisJan 27, 2008 12:06 pm 
eliottJan 27, 2008 12:08 pm 
just startingJan 27, 2008 1:48 pm 
RoxisJan 27, 2008 1:53 pm 
just startingJan 27, 2008 7:40 pm 
eliottJan 27, 2008 10:25 pm 
Igor SysoevJan 27, 2008 10:25 pm 
just startingJan 28, 2008 4:47 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: nginx and IEActions...
From:eliott (elio@public.gmane.org)
Date:Jan 27, 2008 10:25:19 pm
List:ru.sysoev.nginx

On 1/27/08, just starting
<just@public.gmane.org> wrote:

hi,

I have updated my version to 0.6.25(latest).

I have a question though. Will it work for users behind a proxy server with caching enabled.

Suppose at first an user using firefox sends a request for a static page test.html. Now when another user with IE6 tries to access the same page, then will the proxy server fetch the uncompressed version or just serve from cache.

If what I am thinking is true, what is the best possible way to handle this.(keep the gzip flag OFF?)

Thanks, Rakesh.

You could probably add an extra vary header, for vary'ing based on user-agent as well. Then each browser would get a different cache of that specific object.

You aren't having problems with html compression though, are you? My guess is that it is compressed js or css that is causing the problem. You might want to double check.

If it is just css or js, you may be able to add the additional vary header based on the mime type of those files, instead of for all html.

Not super sure though. I haven't dealt with vary headers and intermediate caches very much...