Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package apache2 for openSUSE:Factory checked 
in at 2022-01-14 23:12:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apache2 (Old)
 and      /work/SRC/openSUSE:Factory/.apache2.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "apache2"

Fri Jan 14 23:12:39 2022 rev:191 rq:946161 version:2.4.52

Changes:
--------
--- /work/SRC/openSUSE:Factory/apache2/apache2.changes  2022-01-11 
21:20:43.897020527 +0100
+++ /work/SRC/openSUSE:Factory/.apache2.new.1892/apache2.changes        
2022-01-14 23:13:07.926627592 +0100
@@ -1,0 +2,9 @@
+Tue Jan 11 12:05:55 UTC 2022 - David Anes <david.a...@suse.com>
+
+- Align some defaults in apache2-server-tuning.conf to upstream 
+  defaults: 
+  * Updated MaxRequestWorkers and ServerLimit to 256. [bsc#1194062]
+- The old name MaxRequestsPerChild is changed to MaxConnectionsPerChild.
+  * See 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxconnectionsperchild
+
+-------------------------------------------------------------------
@@ -5,0 +15,5 @@
+
+-------------------------------------------------------------------
+Mon Jan 10 16:16:16 UTC 2022 - o...@aepfle.de
+
+- remove instance units from post scripts, they can not be reloaded

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ apache2.spec ++++++
--- /var/tmp/diff_new_pack.tHfNZG/_old  2022-01-14 23:13:09.010628291 +0100
+++ /var/tmp/diff_new_pack.tHfNZG/_new  2022-01-14 23:13:09.014628294 +0100
@@ -961,7 +961,7 @@
 # main package scriptlets
 %if "%{flavor}" == ""
 %pre
-%service_add_pre apache2.service apache2@.service apache2.target
+%service_add_pre apache2.service apache2.target
 exit 0
 
 %post
@@ -971,7 +971,7 @@
         usermod -g %{httpdgroup} %{httpduser} 2>/dev/null ||:
         usermod -s /bin/false %{httpduser} 2>/dev/null ||:
 fi
-%service_add_post apache2.service apache2@.service apache2.target
+%service_add_post apache2.service apache2.target
 %set_permissions %{_sbindir}/suexec || \
   echo "Please check %{_sysconfdir}/permissions.local for settings of 
%{_sbindir}/suexec ."
 %{fillup_only apache2}
@@ -987,15 +987,15 @@
 %verify_permissions -e %{_sbindir}/suexec
 
 %preun
-%service_del_preun apache2.service apache2@.service apache2.target
+%service_del_preun apache2.service apache2.target
 exit 0
 
 %postun
 %if %{defined service_del_postun_without_restart}
-%service_del_postun_without_restart apache2.service apache2@.service 
apache2.target
+%service_del_postun_without_restart apache2.service apache2.target
 %else
 DISABLE_RESTART_ON_UPDATE='yes'
-%service_del_postun apache2.service apache2@.service apache2.target
+%service_del_postun apache2.service apache2.target
 %endif
 if [ "$1" = 1 ]; then
   %apache_request_restart

++++++ apache2-server-tuning.conf ++++++
--- /var/tmp/diff_new_pack.tHfNZG/_old  2022-01-14 23:13:09.338628503 +0100
+++ /var/tmp/diff_new_pack.tHfNZG/_new  2022-01-14 23:13:09.338628503 +0100
@@ -20,13 +20,13 @@
        MaxSpareServers     10
        # highest possible MaxRequestWorkers setting for the lifetime of the 
Apache process.
        # https://httpd.apache.org/docs/2.4/mod/mpm_common.html#serverlimit
-       ServerLimit        150
+       ServerLimit        256
        # maximum number of server processes allowed to start (formerly 
MaxClients)
        # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers
-       MaxRequestWorkers         150
+       MaxRequestWorkers         256
        # maximum number of requests a server process serves
-       # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild
-       MaxRequestsPerChild  10000
+       # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxconnectionsperchild
+       MaxConnectionsPerChild  10000
 </IfModule>
 
 # worker MPM
@@ -45,13 +45,13 @@
        ThreadLimit         64
        # maximum number of simultaneous client connections (formerly 
MaxClients)
        # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers
-       MaxRequestWorkers         150
+       MaxRequestWorkers         256
        # 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
+       # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxconnectionsperchild
+       MaxConnectionsPerChild  10000
 </IfModule>
 
 # event MPM
@@ -70,13 +70,13 @@
        ThreadLimit         64
        # maximum number of simultaneous client connections (formerly 
MaxClients)
        # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers
-       MaxRequestWorkers         150
+       MaxRequestWorkers         256
        # 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
+       # 
https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxconnectionsperchild
+       MaxConnectionsPerChild  10000
        # limit concurrent connections per process
        # 
https://httpd.apache.org/docs/2.4/mod/event.html#asyncrequestworkerfactor
        AsyncRequestWorkerFactor  2

Reply via email to