Httpd Modules: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * httpd =Overview= =Modules= * mod_proxy * mod_cluster") |
No edit summary |
||
Line 4: | Line 4: | ||
=Overview= | =Overview= | ||
=Static Modules vs Dynamic Modules= | |||
Support for a specific module can be statically linked into the httpd binary at compilation, by specifying it with a configuration option similar to "--enable-proxy", or the module can be loaded at runtime, if the [[]]] capability is enabled. | |||
==Dynamic Shared Object (DSO)== | |||
{{External|http://httpd.apache.org/docs/current/dso.html}} | |||
Dynamic Shared Object (DSO) capability is enabled at compilation by using "--enable-so" option. | |||
=Modules= | =Modules= | ||
* [[httpd mod_proxy|mod_proxy]] | * [[httpd mod_proxy|mod_proxy]] | ||
* [[mod_cluster]] | * [[mod_cluster]] |
Revision as of 18:00, 5 January 2017
Internal
Overview
Static Modules vs Dynamic Modules
Support for a specific module can be statically linked into the httpd binary at compilation, by specifying it with a configuration option similar to "--enable-proxy", or the module can be loaded at runtime, if the [[]]] capability is enabled.
Dynamic Shared Object (DSO) capability is enabled at compilation by using "--enable-so" option.