Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package apache2 for openSUSE:Factory checked in at 2021-11-20 02:38:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/apache2 (Old) and /work/SRC/openSUSE:Factory/.apache2.new.1895 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache2" Sat Nov 20 02:38:03 2021 rev:187 rq:931489 version:2.4.51 Changes: -------- --- /work/SRC/openSUSE:Factory/apache2/apache2.changes 2021-10-08 22:05:22.884593008 +0200 +++ /work/SRC/openSUSE:Factory/.apache2.new.1895/apache2.changes 2021-11-20 02:38:10.172972328 +0100 @@ -1,0 +2,5 @@ +Sun Nov 14 10:21:09 UTC 2021 - Arjen de Korte <suse+bu...@de-korte.org> + +- add section for the 'event' MPM to apache2-server-tuning.conf + +------------------------------------------------------------------- @@ -10 +14,0 @@ - ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ apache2-server-tuning.conf ++++++ --- /var/tmp/diff_new_pack.6XBZB5/_old 2021-11-20 02:38:11.552967775 +0100 +++ /var/tmp/diff_new_pack.6XBZB5/_new 2021-11-20 02:38:11.556967761 +0100 @@ -54,6 +54,34 @@ MaxRequestsPerChild 10000 </IfModule> +# event MPM +<IfModule event.c> + # initial number of server processes to start + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#startservers + StartServers 3 + # minimum number of worker threads which are kept spare + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#minsparethreads + MinSpareThreads 25 + # maximum number of worker threads which are kept spare + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxsparethreads + MaxSpareThreads 75 + # upper limit on the configurable number of threads per child process + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadlimit + ThreadLimit 64 + # maximum number of simultaneous client connections (formerly MaxClients) + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers + MaxRequestWorkers 150 + # number of worker threads created by each child process + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadsperchild + ThreadsPerChild 25 + # maximum number of requests a server process serves + # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild + MaxRequestsPerChild 10000 + # limit concurrent connections per process + # https://httpd.apache.org/docs/2.4/mod/event.html#asyncrequestworkerfactor + AsyncRequestWorkerFactor 2 +</IfModule> + # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to "Off" to deactivate.