RE: [us...@httpd] mod_cache and se

2009-03-03 Thread Anthony J. Biacco
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

Re: [us...@httpd] mod_cache and se

2009-03-03 Thread Nuno Fernandes
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

Re: [us...@httpd] mod_cache and se

2009-03-03 Thread Nuno Fernandes
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

Re: [us...@httpd] mod_cache and se

2009-03-02 Thread Eric Covener
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

Re: [us...@httpd] mod_cache and se

2009-03-02 Thread Eric Covener
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

RE: [us...@httpd] mod_cache and se

2009-03-02 Thread Anthony J. Biacco
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