From: Michael Tremer Date: Tue, 28 Feb 2017 11:32:08 +0000 (+0000) Subject: apache: Allow more processes/connections as the same time X-Git-Tag: v2.19-core110^2~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c016773b9816ad9be4ffc8643c30457e87c094e3;p=people%2Fstevee%2Fipfire-2.x.git apache: Allow more processes/connections as the same time In large networks, when ever multiple clients connect at the same time and request the proxy.pac configuration file, apache rate-limited requests so that some clients did not get a response and therefore could not connect to the Internet. This allows apache to handle more connections at the same time. Suggested-by: Thoralf Söldenwagner Signed-off-by: Michael Tremer --- diff --git a/config/httpd/server-tuning.conf b/config/httpd/server-tuning.conf index 183ce80fa0..8f1eae5a2c 100644 --- a/config/httpd/server-tuning.conf +++ b/config/httpd/server-tuning.conf @@ -19,9 +19,8 @@ KeepAliveTimeout 15 MinSpareServers 1 MaxSpareServers 10 -StartServers 1 -MaxClients 10 -MaxRequestsPerChild 100 +StartServers 2 +MaxClients 1000 # # The following directives modify normal HTTP response behavior to diff --git a/config/rootfiles/core/110/filelists/files b/config/rootfiles/core/110/filelists/files index f4ce9898ef..b996e48aa4 100644 --- a/config/rootfiles/core/110/filelists/files +++ b/config/rootfiles/core/110/filelists/files @@ -1,5 +1,6 @@ etc/system-release etc/issue +etc/httpd/conf/server-tuning.conf etc/rc.d/init.d/unbound srv/web/ipfire/cgi-bin/index.cgi srv/web/ipfire/cgi-bin/vpnmain.cgi