diff options
| author | Kevin Fenzi <kevin@scrye.com> | 2015-10-09 15:34:17 +0000 |
|---|---|---|
| committer | Kevin Fenzi <kevin@scrye.com> | 2015-10-09 15:34:17 +0000 |
| commit | 17b4748e4e3f75420dd802fc26217892074381b3 (patch) | |
| tree | 64b4f2b26de27bf463cb3bda27a368693a4ead5c /roles/httpd/proxy/files | |
| parent | 2be1e05107b64b798651971c7a64a0300ee0f51f (diff) | |
| download | ansible-17b4748e4e3f75420dd802fc26217892074381b3.tar.gz ansible-17b4748e4e3f75420dd802fc26217892074381b3.tar.xz ansible-17b4748e4e3f75420dd802fc26217892074381b3.zip | |
Switch proxies to use the mpm event module instead of prefork.
Diffstat (limited to 'roles/httpd/proxy/files')
| -rw-r--r-- | roles/httpd/proxy/files/00-mpm.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/httpd/proxy/files/00-mpm.conf b/roles/httpd/proxy/files/00-mpm.conf new file mode 100644 index 000000000..f349d6726 --- /dev/null +++ b/roles/httpd/proxy/files/00-mpm.conf @@ -0,0 +1,18 @@ +# 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 +# +#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 |
