apache: fix MaxRequestsPerChild value to be sync with wiki.e.o

This commit is contained in:
Gregory Colpart 2023-11-16 14:43:22 +01:00
parent b1a67d1a5c
commit ac72c7ac31
2 changed files with 3 additions and 2 deletions

View file

@ -37,6 +37,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* webapps/nextcloud: fix misplaced gid attribute * webapps/nextcloud: fix misplaced gid attribute
* webapps/nextcloud: added check that nexctcloud uid is over 3000 * webapps/nextcloud: added check that nexctcloud uid is over 3000
* ProFTPd: set missing default listen IP for SFTP * ProFTPd: set missing default listen IP for SFTP
* apache: fix MaxRequestsPerChild value to be sync with wiki.e.o
### Removed ### Removed

View file

@ -10,7 +10,7 @@ MaxKeepAliveRequests 10
StartServers 50 StartServers 50
MinSpareServers 20 MinSpareServers 20
MaxSpareServers 30 MaxSpareServers 30
MaxRequestsPerChild 0 MaxRequestsPerChild 100
</IfModule> </IfModule>
<IfModule mpm_worker_module> <IfModule mpm_worker_module>
@ -20,7 +20,7 @@ MaxKeepAliveRequests 10
ThreadLimit 64 ThreadLimit 64
ThreadsPerChild 25 ThreadsPerChild 25
MaxRequestWorkers 150 MaxRequestWorkers 150
MaxConnectionsPerChild 0 MaxConnectionsPerChild 100
</IfModule> </IfModule>
<IfModule mpm_itk_module> <IfModule mpm_itk_module>