From: Rainer Jung Date: Tue, 15 Jun 2010 11:05:13 +0000 (+0000) Subject: Update comment about required modules in extra configuration files. X-Git-Tag: 2.3.7~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=12b699719ae32439b3628b64f0729f48add219cb;p=apache Update comment about required modules in extra configuration files. Mostly adding the information to the vhost and ssl files, and adding mod_authz_core and mod_authz_host (for "Require all denied" and "Require all granted") where needed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@954816 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/conf/extra/httpd-autoindex.conf.in b/docs/conf/extra/httpd-autoindex.conf.in index 6c7d05cee8..51b02ed9cb 100644 --- a/docs/conf/extra/httpd-autoindex.conf.in +++ b/docs/conf/extra/httpd-autoindex.conf.in @@ -1,7 +1,8 @@ # # Directives controlling the display of server-generated directory listings. # -# Required modules: mod_autoindex, mod_alias +# Required modules: mod_authz_core, mod_authz_host, +# mod_autoindex, mod_alias # # To see the listing of a directory, the Options directive for the # directory must include "Indexes", and the directory must not contain diff --git a/docs/conf/extra/httpd-dav.conf.in b/docs/conf/extra/httpd-dav.conf.in index d58725dab4..da8bfefe1d 100644 --- a/docs/conf/extra/httpd-dav.conf.in +++ b/docs/conf/extra/httpd-dav.conf.in @@ -1,9 +1,9 @@ # # Distributed authoring and versioning (WebDAV) # -# Required modules: mod_dav, mod_dav_fs, mod_setenvif, mod_alias -# mod_auth_digest, mod_authn_file, mod_authz_user -# +# Required modules: mod_alias, mod_auth_digest, mod_authn_core, mod_authn_file, +# mod_authz_core, mod_authz_user, mod_dav, mod_dav_fs, +# mod_setenvif # The following example gives DAV write access to a directory called # "uploads" under the ServerRoot directory. diff --git a/docs/conf/extra/httpd-info.conf.in b/docs/conf/extra/httpd-info.conf.in index 1f8058ba3e..5cfdf69be6 100644 --- a/docs/conf/extra/httpd-info.conf.in +++ b/docs/conf/extra/httpd-info.conf.in @@ -2,9 +2,9 @@ # Get information about the requests being processed by the server # and the configuration of the server. # -# Required modules: mod_status (for the server-status handler), +# Required modules: mod_authz_core, mod_authz_host, # mod_info (for the server-info handler), -# mod_authz_core, mod_authz_host +# mod_status (for the server-status handler) # # Allow server status reports generated by mod_status, diff --git a/docs/conf/extra/httpd-manual.conf.in b/docs/conf/extra/httpd-manual.conf.in index f128525cef..a1b6548f33 100644 --- a/docs/conf/extra/httpd-manual.conf.in +++ b/docs/conf/extra/httpd-manual.conf.in @@ -4,7 +4,8 @@ # The documentation is always available at # http://httpd.apache.org/docs/trunk/ # -# Required modules: mod_alias, mod_setenvif, mod_negotiation +# Required modules: mod_alias, mod_authz_core, mod_authz_host, +# mod_setenvif, mod_negotiation # AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|pt-br|ru|tr))?(/.*)?$ "@exp_manualdir@$1" diff --git a/docs/conf/extra/httpd-multilang-errordoc.conf.in b/docs/conf/extra/httpd-multilang-errordoc.conf.in index 617f5f607f..3da3bf22cd 100644 --- a/docs/conf/extra/httpd-multilang-errordoc.conf.in +++ b/docs/conf/extra/httpd-multilang-errordoc.conf.in @@ -2,7 +2,8 @@ # The configuration below implements multi-language error documents through # content-negotiation. # -# Required modules: mod_alias, mod_include, mod_negotiation +# Required modules: mod_alias, mod_authz_core, mod_authz_host, +# mod_include, mod_negotiation # # We use Alias to redirect any /error/HTTP_.html.var response to # our collection of by-error message multi-language collections. We use diff --git a/docs/conf/extra/httpd-ssl.conf.in b/docs/conf/extra/httpd-ssl.conf.in index fae4cbeef7..1ab02bcb8e 100644 --- a/docs/conf/extra/httpd-ssl.conf.in +++ b/docs/conf/extra/httpd-ssl.conf.in @@ -8,6 +8,8 @@ # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # +# Required modules: mod_log_config, mod_setenvif, mod_ssl, +# socache_shmcb_module (for default value of SSLSessionCache) # # Pseudo Random Number Generator (PRNG): diff --git a/docs/conf/extra/httpd-userdir.conf.in b/docs/conf/extra/httpd-userdir.conf.in index b801a31cbb..2a030fd051 100644 --- a/docs/conf/extra/httpd-userdir.conf.in +++ b/docs/conf/extra/httpd-userdir.conf.in @@ -1,6 +1,6 @@ # Settings for user home directories # -# Required module: mod_userdir +# Required module: mod_authz_core, mod_authz_host, mod_userdir # # UserDir: The name of the directory that is appended onto a user's home diff --git a/docs/conf/extra/httpd-vhosts.conf.in b/docs/conf/extra/httpd-vhosts.conf.in index 724aaebd63..9092527b10 100644 --- a/docs/conf/extra/httpd-vhosts.conf.in +++ b/docs/conf/extra/httpd-vhosts.conf.in @@ -1,6 +1,7 @@ -# # Virtual Hosts # +# Required modules: mod_log_config + # If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about