[users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Geoff Millikan
I think I found it but anyone want to confirm Apache doesn't unset the Age header when mod_cache is used because the HTTP 1.1 spec requires it, An HTTP/1.1 server that includes a cache MUST include an Age header field in every response generated from its own cache.

Re: [users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Eric Covener
On Wed, Nov 27, 2013 at 3:58 PM, Geoff Millikan gmilli...@t1shopper.com wrote: I think I found it but anyone want to confirm Apache doesn't unset the Age header when mod_cache is used because the HTTP 1.1 spec requires it, An HTTP/1.1 server that includes a cache MUST include an Age header

RE: [users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Geoff Millikan
No, It doesn't unset the header because mod_headers only runs at the point where the original headers were sent. Most of the server processing is skipped when it's served from the cache, with the exception of connection-level stuff and mod_cache's own processing. Got it. Must all pages

Re: [users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Eric Covener
On Wed, Nov 27, 2013 at 6:29 PM, Geoff Millikan gmilli...@t1shopper.com wrote: No, It doesn't unset the header because mod_headers only runs at the point where the original headers were sent. Most of the server processing is skipped when it's served from the cache, with the exception of