This is what is in the extra/httpd-mpm.conf:# prefork MPM# StartServers: number of server processes to start# MinSpareServers: minimum number of server processes which are kept spare# MaxSpareServers: maximum number of server processes which are kept spare# MaxClients: maximum number of server processes allowed to start# MaxRequestsPerChild: maximum number of requests a server process serves<IfModule mpm_prefork_module>StartServers 5MinSpareServers 5MaxSpareServers 10MaxClients 150MaxRequestsPerChild 0</IfModule>
Sent: Monday, November 16, 2015 7:57 PM
Subject: Re: Getting "connection refused" Apache 2.4
On Tue, Nov 17, 2015 at 1:11 AM, Yann Ylavic <ylavic.dev@xxxxxxxxx> wrote:
> On Tue, Nov 17, 2015 at 12:23 AM, o haya <ohaya@xxxxxxxxx.invalid> wrote:
>>
>> This is with the as-built Apache configuration settings (i.e., I haven't
>> tried tweaking them).
>
> Please share your settings for [...]
> MaxSpareThreads, MinSpareThreads [...]
I meant MaxSpareServers and MinSpareServers here, *Threads are not
relevant for prefork.