This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via c016773b9816ad9be4ffc8643c30457e87c094e3 (commit) from e432689aa99ec262879081fc80161c31b8c4a890 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit c016773b9816ad9be4ffc8643c30457e87c094e3 Author: Michael Tremer michael.tremer@ipfire.org Date: Tue Feb 28 11:32:08 2017 +0000
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 soeldenwagner@brecht-schule.hamburg Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/httpd/server-tuning.conf | 5 ++--- config/rootfiles/core/110/filelists/files | 1 + 2 files changed, 3 insertions(+), 3 deletions(-)
Difference in files: diff --git a/config/httpd/server-tuning.conf b/config/httpd/server-tuning.conf index 183ce80..8f1eae5 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 f4ce989..b996e48 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
hooks/post-receive -- IPFire 2.x development tree