Modules are either compiled in (static) or dynamically loaded (shared).
List static with httpd -l
List all with httpd -t -D DUMP_MODULES
Shared modules are stored in /etc/httpd/modules/
Shared modules are either loaded directly in httpd.conf or by looking in conf.d/*.conf
E.g. conf.d/perl.conf
...
LoadModule perl_module modules/mod_perl.so
...
Here are some paths that are good to know (Apache on CentOS):
Executables /usr/sbin
Config /etc/httpd
Logs /etc/httpd/log
Web Root /var/www/html
No comments:
Post a Comment