Re: svn commit: r1522544 - in /httpd/httpd/trunk: build/win32/fixBaseAddrs.plos/win32/BaseAddr.ref

2013-09-13 Thread Guenter Knauf
On 13.09.2013 18:37, Jeff Trawick wrote: Unless somebody objects (or I forget), I'll commit this: Index: STATUS === --- STATUS(revision 1522956) +++ STATUS(working copy) @@ -88,7 +88,8 @@ * Current exceptions for RTC for this br

compressedlog: pipe log through gzip without the headaches

2013-09-13 Thread Martin Langhoff
[ Using piped logs with gzip is rather painful. Here is what I came up with to improve the "user experience". Getting the scripts right so that no data was lost in normal operation is non-trivial, so I thought I'd share. ] =compresslog README= Save a ton of disk IO (or SAN traffic) in your webser

Re: [PATCH] mod_rewrite, mod_dir and RewriteRule ^$

2013-09-13 Thread Jan Kaluza
- Original Message - > > I'm trying to fix PR 53929 with attached patch. Normally r->uri and > > r->filename ends with "/" in the case of directory request. If mod_rewrite > > rewrites URL in hook_fixup, it changes r->filename. In this patch, I check > > if the r->filename still ends with "

Re: contrast cache_remove_url() and cache_remove_entity()?

2013-09-13 Thread Eric Covener
On Fri, Sep 13, 2013 at 12:32 PM, Mike Rumph wrote: > Hello Eric, > > Do you mean cache_remove_url() and cache_create_entity()? > There is a remove_entity() and a remove_url(). Presumably the latter removes all possible cached entities for the given URL? > By "comment the callback structure" are

Re: svn commit: r1522544 - in /httpd/httpd/trunk: build/win32/fixBaseAddrs.plos/win32/BaseAddr.ref

2013-09-13 Thread Eric Covener
> whoops... (I just added an entry in 2.4.x STATUS to try to list exceptions > to RTC; maybe folks will speak up and get the exception list > complete/correct in the short term) I thought the non unix builds or other "single platform" code was CTR, it just doesn't come up much.

Re: [PATCH] mod_rewrite, mod_dir and RewriteRule ^$

2013-09-13 Thread Eric Covener
> I'm trying to fix PR 53929 with attached patch. Normally r->uri and > r->filename ends with "/" in the case of directory request. If mod_rewrite > rewrites URL in hook_fixup, it changes r->filename. In this patch, I check > if the r->filename still ends with "/" and if not, return DECLINED in > m

[PATCH] mod_proxy_fcgi: Remove hard-coded 30s timeout

2013-09-13 Thread Jan Kaluža
Hi, that's connected to PR 54973. apr_poll in mod_proxy_fcgi dispatch method uses hard-coded 30s timeout if "timeout=XX" is not set in ProxyPass directive. Attached patch uses apr_socket_timeout_get(conn->sock) as default timeout, so it's possible to set this particular timeout globally usin

Re: svn commit: r1522544 - in /httpd/httpd/trunk: build/win32/fixBaseAddrs.plos/win32/BaseAddr.ref

2013-09-13 Thread Jeff Trawick
On Thu, Sep 12, 2013 at 6:18 PM, Gregg Smith wrote: > On 9/12/2013 11:10 AM, Jeff Trawick wrote: > > On Thu, Sep 12, 2013 at 1:40 PM, Steffen > i...@apachelounge.com>**> wrote: >> >> Ok. >> >> >> Thanks for looking, guys. >> >> IIUC the Windows build is commit-then-review, so I'll commit the

Re: svn commit: r1522544 - in /httpd/httpd/trunk: build/win32/fixBaseAddrs.plos/win32/BaseAddr.ref

2013-09-13 Thread Jeff Trawick
On Fri, Sep 13, 2013 at 12:14 PM, Eric Covener wrote: > > whoops... (I just added an entry in 2.4.x STATUS to try to list > exceptions > > to RTC; maybe folks will speak up and get the exception list > > complete/correct in the short term) > > I thought the non unix builds or other "single platf

Re: contrast cache_remove_url() and cache_remove_entity()?

2013-09-13 Thread Mike Rumph
Hello Eric, Do you mean cache_remove_url() and cache_create_entity()? I notice the following httpd version differences that you probably already know. I see that these functions are declared in mod_cache.h only in httpd 2.2. In 2.4 and trunk these are declared in cache_storage.h. And mod_disk_

[PATCH] mod_rewrite, mod_dir and RewriteRule ^$

2013-09-13 Thread Jan Kaluža
Hi, I was trying to examine and fix PR 53929. The problem is that rewrite rule "RewriteRule ^$ /index-cached.html [L]" with "GET /" worked as expected in httpd-2.2, but in httpd-2.4 it does not because of following mod_dir commit: . This commit was originally t