-
Bug
-
Resolution: Done
-
Major
-
httpd 2.4.6 GA, httpd 2.4.23 GA, httpd 2.4.23 SP1 DR3
-
None
-
User Experience
-
-
-
-
-
jbcs-httpd24-2.4/httpd/conf.modules.d/00-mpm.conf
We have been missing mpm event default example config since the JBCS httpd 2.4.6 days. It would be nice to add it either as .conf.sample, so as we don't overwrite anything, in the next SP2 or in the next full release.
Community 2.4.23 example:
# event MPM # StartServers: initial number of server processes to start # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestWorkers: maximum number of worker threads # MaxConnectionsPerChild: maximum number of connections a server process serves # before terminating <IfModule mpm_event_module> StartServers 2 MinSpareThreads 1 MaxSpareThreads 2 ThreadsPerChild 1 MaxRequestWorkers 20 MaxConnectionsPerChild 0 </IfModule>