Search notes:

Apache Modules

The list of modules that are compiled into the server can be displayed with the -l command line option of httpd.
$ apache/bin/httpd -l
Compiled in modules:
  core.c
  mod_win32.c
  mpm_winnt.c
  http_core.c
  mod_so.c

See also

Modules can be dynamically loaded with the LoadModule directive.
The PHP function apache_get_modules returns an array of loaded apache modules.

Index