|
[ Order a Server ] [ Server Support ] |
|
[ Getting Started ] [ Server Help ] [ Add on Help ] [ Solution ] [ Trouble Shooting ] PLEASE NOTE, THIS IS VERY OLD ARCHIVE INFORMATION AND MAY NOT FUNCTION ON NEW SERVERS
Apache ModulesApache Modules are code segments that are written to comply with the Apache API specification and can be loaded into the Apache Web Server. Apache modules can be loaded in one the following ways.
This modular design for adding web server features gives web administrators and developers tremendous power and flexibility. A wide variety of Apache modules have been created supporting all kinds of exciting web server features. Web server speed and efficiency is improved when using Apache modules since your Virtual Server web server can internally process instruction sets rather than relying on external applications.
Static Apache ModulesThe following Apache modules are statically loaded into our customized Apache Web Server.
Dynamic Apache ModulesDynamic module support is one of the key features of the Apache Web Server. The ability to dynamically load modules is known as DSO support. DSO allows you to extend the features and capabilities of Apache by adding the specific module you need, when you need it, without recompiling the web server binary.
Use the
LoadModule MODULE-NAME_module modules/FILE-NAME For example, to add the Status Module, add this line:
LoadModule status_module modules/mod_status.so If you try to load all the modules at the same time you will probably get a resource error. Simply load the modules you need one at a time. Some of the most notable dynamic Apache modules include the following.
A complete list of all available dynamic Apache modules appears below.
Compiling Your Own DSO ModulesApache 1.3.11 also supports the APXS (APache eXtenSion) tool. APXS allows you to compile and link your own dynamic shared object (DSO) Apache Modules. To use APXS, connect to your Virtual Server via Telnet or SSH and issue the following command.
% /usr/local/apache/1.3/bin/apxs OPTIONS MODULE_CODE
PLEASE NOTE, THIS IS OLD ARCHIVE INFORMATION AND MAY NOT FUNCTION ON NEW SERVERS |