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