Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Anthony Biacco
On Tue, Aug 9, 2016 at 4:47 PM, Eric Covener wrote: > On Tue, Aug 9, 2016 at 3:03 AM, Anthony Biacco wrote: > > The only way i found so far is to do a redirect in the rewrite rule with > > [R]. I just don't want the extra overhead that goes along with that. > > > maybe [PT] + what Yann suggested

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Eric Covener
On Tue, Aug 9, 2016 at 3:03 AM, Anthony Biacco wrote: > The only way i found so far is to do a redirect in the rewrite rule with > [R]. I just don't want the extra overhead that goes along with that. maybe [PT] + what Yann suggested. -- Eric Covener cove...@gmail.com -

Re: [users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Yann Ylavic
On Tue, Aug 9, 2016 at 9:03 AM, Anthony Biacco wrote: > > Is there any way i can rewrite the query string so that only the modified > query string is used to create the cache files? Maybe you could try to delay mod_cache processing by using: CacheQuickHandler off Regards, Yann. -

Re: [users@httpd] Apache 2.4.12+ on Windows x64 stops responding to requests

2016-08-09 Thread Jacob Champion
On 08/09/2016 07:22 AM, Paul Spangler wrote: Though in our case, we only needed to use AcceptFilter http connect AcceptFilter https connect rather than turning it off completely using "none". Setting it to connect allows the server to recycle sockets. I'll see if I can't look back into it and

Re: [users@httpd] Is it possible to set different protocol for particular User-Agent?

2016-08-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Daniel, On 8/3/16 4:55 AM, Daniel wrote: > No, by the time the user agent or any actual http data gets to be > seen the protocol/cipher and complete ssl connection has already > been stablished. > > 2016-08-02 23:26 GMT+02:00 ghost

Re: [users@httpd] Apache 2.4.12+ on Windows x64 stops responding to requests

2016-08-09 Thread Paul Spangler
On 8/8/2016 6:14 PM, Jacob Champion wrote: On 07/25/2016 11:13 AM, Arthur Ramsey wrote: I think I will try the following settings first, but failing that I'll give the x86 build a try. AcceptFilter https none Any follow-up on this? I've been digging into the AcceptEx() implementation, since i

[users@httpd] getting disk cache to respect removing key from request query string

2016-08-09 Thread Anthony Biacco
I'm using apache 2.4.23 under CentOS. I have requests that are coming into apache that look like: /path?key1=value&key2=value I'm trying to remove the key1 parameter and value from the query string (such that it would be /path?key2=value) I managed to do this with a modified rewrite example form