urotux.com]
Sent: Tuesday, March 03, 2009 8:53 AM
To: users@httpd.apache.org
Subject: Re: [us...@httpd] mod_cache and se
Hi again,
I think that creates a problem that downstream proxies are affected by
that
change, meaning that if i remove those headers, squids and browsers will
not
cache that
Hi again,
I think that creates a problem that downstream proxies are affected by that
change, meaning that if i remove those headers, squids and browsers will not
cache that content.
I only want that behaviour in mod_cache in my reverse proxy and not in the
other downstream proxies.
Thanks,
N
On Monday 02 March 2009 18:12:59 Eric Covener wrote:
> On Mon, Mar 2, 2009 at 12:40 PM, Eric Covener wrote:
> > On Mon, Mar 2, 2009 at 12:26 PM, Nuno Fernandes
wrote:
> >> SetEnvIf Request_URI "\.aspx$" no-cache
> >
> > This is in the manual but not yet in a 2.2.x release
>
> Updated the manual
On Mon, Mar 2, 2009 at 12:40 PM, Eric Covener wrote:
> On Mon, Mar 2, 2009 at 12:26 PM, Nuno Fernandes
> wrote:
>
>> SetEnvIf Request_URI "\.aspx$" no-cache
>
> This is in the manual but not yet in a 2.2.x release
Updated the manual to reflect "version after 2.2.11" applicability in env.html
On Mon, Mar 2, 2009 at 12:26 PM, Nuno Fernandes wrote:
> SetEnvIf Request_URI "\.aspx$" no-cache
This is in the manual but not yet in a 2.2.x release
--
Eric Covener
cove...@gmail.com
-
The official User-To-User support forum
An environmental variable of no-cache won't do anything, it doesn't
modify the response headers at all for you. But you can try this..
SetEnvIf Request_URI "\.aspx$" DO_nocache
Header set Cache-Control no-cache env=DO_nocache
Header unset Expires env=DO_nocache
-Tony
---
M