httpd 的几个基本的内核模块,一般情况下都需要加载的
(原文链接 http://ddbiz.com/?p=138)
1. mod_auth_core
#LoadModule authz_core_module modules/mod_authz_core.so
ERR:
Invalid command 'Require', perhaps misspelled or defined by a module not included in the server configuration
2. mod_dir
#LoadModule dir_module modules/mod_dir.so
ERR:
Invalid command 'DirectoryIndex', perhaps misspelled or defined by a module not included in the server configuration
3. mod_authz_host
#LoadModule authz_host_module modules/mod_authz_host.so
ERR:
Unknown Authz provider: all
4. mod_alias
#LoadModule alias_module modules/mod_alias.so
ERR:
Invalid command 'Alias', perhaps misspelled or defined by a module not included in the server configuration
5. mod_authn_core (httpd >=2.3.5)
#LoadModule authn_core_module modules/mod_authn_core.so
ERR:
Invalid command 'Allow', perhaps misspelled or defined by a module not included in the server configuration
6. mod_access_compat
#
LoadModule mime_module modules/mod_mime.so
ERR:Invalid command 'AddHandler', perhaps misspelled or defined by a module not included in the server configuration
7. mod_authn_core
#LoadModule authn_core_module modules/mod_authn_core.so
ERR:Invalid command 'AuthType', perhaps misspelled or defined by a module not included in the server configuration
8. mod_authn_file
#LoadModule authn_file_module modules/mod_authn_file.so
ERR: Invalid command 'AuthUserFile', perhaps misspelled or defined by a module not included in the server configuration
9. mod_authz_user
#LoadModule authz_user_module modules/mod_authz_user.so
ERR:
Unknown Authz provider: valid-user
10. mod_unixd
#LoadModule unixd_module modules/mod_unixd.so
ERR:Server MUST relinquish startup privileges before accepting connections. Please ensure mod_unixd or other system security module is loaded.
11. mod_cgi
#LoadModule cgi_module modules/mod_cgi.so
12. mod_log_config
#LoadModule log_config_module modules/mod_log_config.so
(原文链接 http://ddbiz.com/?p=138)