Blame SPECS/00-mpm.conf

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