Re: modules.apache.org is down

2017-03-15 Thread Jose Kahan
On Wed, Mar 15, 2017 at 05:36:47PM +0100, Jose Kahan wrote:
> 
> It's been a couple of months (if not more) that the 3rd party
> module repo is unavailable. the last discussion I saw about
> this site dates from Nov 2016, where people were talking about
> moderation, spambots, and making a new system.

I meant Nov. 2015.

--josé


Re: modules.apache.org is down

2017-03-15 Thread Arturo 'Buanzo' Busleiman
And remove/update the reference to it off http://httpd.apache.org/modules/


On Wed, Mar 15, 2017 at 1:36 PM, Jose Kahan  wrote:

> Hi,
>
> It's been a couple of months (if not more) that the 3rd party
> module repo is unavailable. the last discussion I saw about
> this site dates from Nov 2016, where people were talking about
> moderation, spambots, and making a new system.
>
> Are you planning to bring it back online? Otherwise, it would
> be better to remove the link that points to it from this page:
>
>   https://modules.apache.org/
>
> I hope it comes back!
>
> Cheers,
>
> --josé
>


modules.apache.org is down

2017-03-15 Thread Jose Kahan
Hi,

It's been a couple of months (if not more) that the 3rd party
module repo is unavailable. the last discussion I saw about
this site dates from Nov 2016, where people were talking about
moderation, spambots, and making a new system.

Are you planning to bring it back online? Otherwise, it would
be better to remove the link that points to it from this page:

  https://modules.apache.org/

I hope it comes back! 

Cheers,

--josé


Re: server-status script donated to ASF

2017-03-15 Thread Stefan Eissing
Very cool! Thanks to all involved!

> Am 15.03.2017 um 15:23 schrieb Daniel Gruno :
> 
> FWIW, the stuff that powers https://httpd.apache.org/server-status has
> now been donated to the HTTPd project.
> 
> With regards,
> Daniel.

Stefan Eissing

bytes GmbH
Hafenstrasse 16
48155 Münster
www.greenbytes.de



server-status script donated to ASF

2017-03-15 Thread Daniel Gruno
FWIW, the stuff that powers https://httpd.apache.org/server-status has
now been donated to the HTTPd project.

With regards,
Daniel.


listener buckets regressions

2017-03-15 Thread Joe Orton
There seems to be some weird regressions in this.  A mis-configuration 
like:

Listen 127.0.0.1:8025
Listen [::1]:8025
Listen 127.0.0.1:8025
Listen [::1]:8025
ListenCoresBucketsRatio 8

... no longer triggers a startup failure - is that expected?  I guess it 
should be documented if so.

Such a config then leaks fds across reloads:

$ ss -ntlp | grep :8025 | wc -l
8
$ ./bin/apachectl graceful
$ ss -ntlp | grep :8025 | wc -l
10
$ ./bin/apachectl graceful
$ ss -ntlp | grep :8025 | wc -l
12

Maybe somebody familiar with the code can understand why.

These issues are a regression in 2.4.x without ListenCoresBucketsRatio 
set as well, which the below seems to fix (proposed for backport):

http://svn.apache.org/viewvc?view=revision&revision=1777923

Regards, Joe