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