after the comment
#Dynamic Shared Object (DSO) Support
under the extra
modules section after the comment
#Extra Modules
. The load module
statement is shown in Figure 32.
...
#
# Dynamic Shared Object (DSO) Support
#
...
# LoadModule usertrack_module
libexec/mod_usertrack.so
LoadModule unique_id_module
libexec/mod_unique_id.so
LoadModule setenvif_module
libexec/mod_setenvif.so
LoadModule ibm_app_server_module /opt/IBMWebAS/plugins/linux/mod_ibm
_app_server.so
...
Figure 32. LoadModule entry for app_server_module in httpd.conf
AddModule mod_app_server.c
There should be an AddModule definition for mod_app_server.c in the
modules load list. This list is prefixed by an appropriate comment and the
ClearModuleList directive. Under the Extra Modules section, we will find
this AddModule definition for mod_app_server.c as shown in Figure 33.
...
# Reconstruction of the complete module list from all available
# (static and shared ones) to achieve correct module execution
# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS,
ClearModuleList
...
# AddModule mod_usertrack.c
AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_app_server.c
...
Figure 33. AddModule entry for mod_app_server.c in httpd.conf
At the end of the httpd.conf file, we verify that it contains the IBM
WebSphere virtual directory and configuration entries as shown in Figure
34 on page 42.
Chapter 2. Setup and configuration
41