altarch-user / rpms / httpd

Forked from rpms/httpd 2 years ago
Clone

Blame SOURCES/00-mpm.conf

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