arrfab / rpms / httpd

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