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:just starting (just@public.gmane.org)
Date:Jan 28, 2008 4:47:33 pm
List:ru.sysoev.nginx

I dont have much idea abt proxies. So please clear the scene for me.

The 2 options that you provided:

1) default: responses to the proxied requests are not compressed at all: gzip_proxied off;

It is the safe option, right. If the user is behind a proxy dont use gzip. Seems fair enough.

2) to allow to cache correctly compressed responses (modern Squids): gzip_proxied on; gzip_vary on;

Now will this work on every condition for all users no matter how their proxy has been configured.

Thanks, Rakesh.

On Jan 28, 2008 11:55 AM, Igor Sysoev
<is-G@public.gmane.org> wrote:

On Mon, Jan 28, 2008 at 09:11:17AM +0530, just starting wrote:

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?)

There are two ways to work with proxies:

1) default: responses to the proxied requests are not compressed at all: gzip_proxied off;

2) to allow to cache correctly compressed responses (modern Squids): gzip_proxied on; gzip_vary on;