Files
Cloud-CMS/docker/etc/apache2/mods-enabled/mpm_prefork.conf

15 lines
745 B
Plaintext
Raw Normal View History

2025-12-02 10:32:59 -05:00
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxRequestWorkers: maximum number of server processes allowed to start
# MaxConnectionsPerChild: maximum number of requests a server process serves
<IfModule mpm_prefork_module>
StartServers ${CMS_APACHE_START_SERVERS}
MinSpareServers ${CMS_APACHE_MIN_SPARE_SERVERS}
MaxSpareServers ${CMS_APACHE_MAX_SPARE_SERVERS}
MaxRequestWorkers ${CMS_APACHE_MAX_REQUEST_WORKERS}
MaxConnectionsPerChild ${CMS_APACHE_MAX_CONNECTIONS_PER_CHILD}
</IfModule>