Blame SOURCES/00-mpm.conf

af9b8b
# Select the MPM module which should be used by uncommenting exactly
af9b8b
# one of the following LoadModule lines:
af9b8b
af9b8b
# prefork MPM: Implements a non-threaded, pre-forking web server
af9b8b
# See: http://httpd.apache.org/docs/2.4/mod/prefork.html
af9b8b
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
af9b8b
af9b8b
# worker MPM: Multi-Processing Module implementing a hybrid
af9b8b
# multi-threaded multi-process web server
af9b8b
# See: http://httpd.apache.org/docs/2.4/mod/worker.html
af9b8b
#
af9b8b
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
af9b8b
af9b8b
# event MPM: A variant of the worker MPM with the goal of consuming
af9b8b
# threads only for connections with active processing
af9b8b
# See: http://httpd.apache.org/docs/2.4/mod/event.html
af9b8b
#
af9b8b
#LoadModule mpm_event_module modules/mod_mpm_event.so
af9b8b