altarch-user / rpms / httpd

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