altarch-user / rpms / httpd

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