52592b
# Select the MPM module which should be used by uncommenting exactly
52592b
# one of the following LoadModule lines.  See the httpd.conf(5) man
52592b
# page for more information on changing the MPM.
52592b
52592b
# prefork MPM: Implements a non-threaded, pre-forking web server
52592b
# See: http://httpd.apache.org/docs/2.4/mod/prefork.html
52592b
#
52592b
# NOTE: If enabling prefork, the httpd_graceful_shutdown SELinux
52592b
# boolean should be enabled, to allow graceful stop/shutdown.
52592b
#
52592b
#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
52592b
52592b
# worker MPM: Multi-Processing Module implementing a hybrid
52592b
# multi-threaded multi-process web server
52592b
# See: http://httpd.apache.org/docs/2.4/mod/worker.html
52592b
#
52592b
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
52592b
52592b
# event MPM: A variant of the worker MPM with the goal of consuming
52592b
# threads only for connections with active processing
52592b
# See: http://httpd.apache.org/docs/2.4/mod/event.html
52592b
#
52592b
#LoadModule mpm_event_module modules/mod_mpm_event.so