Httpd worker MPM: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
* [[Httpd_Multi-Processing_Module_Concepts#worker|Multi-Processing Module Concepts]] | * [[Httpd_Multi-Processing_Module_Concepts#worker|Multi-Processing Module Concepts]] | ||
= | <font color=red>TODO, copy over from https://home.feodorov.com:9443/wiki/Wiki.jsp?page=HttpdWorkerMPM</font> | ||
=Concepts= | =Concepts= | ||
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;"> | |||
< | :[[httpd woker MPM Concepts|worker MPM Concepts]] | ||
</blockquote> | |||
=Compilation= | =Compilation= |
Revision as of 01:26, 2 January 2017
External
Internal
TODO, copy over from https://home.feodorov.com:9443/wiki/Wiki.jsp?page=HttpdWorkerMPM
Concepts
Compilation
./configure ... --with-mpm=worker ...
To test if the worker MPM has been correctly compiled into binary, use:
httpd -l
You should see:
[webr@rangiroa ~]$ httpd -l Compiled in modules: core.c ... worker.c http_core.c ...
Also you can use:
httpd -V
should report the binary in worker mode.