Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docker-shib-proxy/container_files/httpd/00-mpm.conf
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (17 sloc)
843 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Select the MPM module which should be used by uncommenting exactly | |
# one of the following LoadModule lines: | |
# prefork MPM: Implements a non-threaded, pre-forking web server | |
# See: http://httpd.apache.org/docs/2.4/mod/prefork.html | |
# | |
# LoadModule mpm_prefork_module modules/mod_mpm_prefork.so | |
# worker MPM: Multi-Processing Module implementing a hybrid | |
# multi-threaded multi-process web server | |
# See: http://httpd.apache.org/docs/2.4/mod/worker.html | |
# (Recommended for Shibboleth SP; see: | |
# https://wiki.shibboleth.net/confluence/display/SP3/Apache) | |
LoadModule mpm_worker_module modules/mod_mpm_worker.so | |
# event MPM: A variant of the worker MPM with the goal of consuming | |
# threads only for connections with active processing | |
# See: http://httpd.apache.org/docs/2.4/mod/event.html | |
# | |
#LoadModule mpm_event_module modules/mod_mpm_event.so |