forked from pool/apache2
Accepting request 931489 from Apache
- add section for the 'event' MPM to apache2-server-tuning.conf (forwarded request 931327 from adkorte) OBS-URL: https://build.opensuse.org/request/show/931489 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/apache2?expand=0&rev=187
This commit is contained in:
commit
ac59b1d5d0
@ -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.
|
||||
|
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 14 10:21:09 UTC 2021 - Arjen de Korte <suse+build@de-korte.org>
|
||||
|
||||
- add section for the 'event' MPM to apache2-server-tuning.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 7 17:30:44 UTC 2021 - Michael Ströder <michael@stroeder.com>
|
||||
|
||||
@ -8,7 +13,6 @@ Thu Oct 7 17:30:44 UTC 2021 - Michael Ströder <michael@stroeder.com>
|
||||
*) core: Add ap_unescape_url_ex() for better decoding control, and deprecate
|
||||
unused AP_NORMALIZE_DROP_PARAMETERS flag.
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 4 15:23:51 UTC 2021 - Michael Ströder <michael@stroeder.com>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user