You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2010/06/15 13:05:13 UTC

svn commit: r954816 - in /httpd/httpd/trunk/docs/conf/extra: httpd-autoindex.conf.in httpd-dav.conf.in httpd-info.conf.in httpd-manual.conf.in httpd-multilang-errordoc.conf.in httpd-ssl.conf.in httpd-userdir.conf.in httpd-vhosts.conf.in

Author: rjung
Date: Tue Jun 15 11:05:13 2010
New Revision: 954816

URL: http://svn.apache.org/viewvc?rev=954816&view=rev
Log:
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.

Modified:
    httpd/httpd/trunk/docs/conf/extra/httpd-autoindex.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-dav.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-manual.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-multilang-errordoc.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-userdir.conf.in
    httpd/httpd/trunk/docs/conf/extra/httpd-vhosts.conf.in

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-autoindex.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-autoindex.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-autoindex.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-autoindex.conf.in Tue Jun 15 11:05:13 2010
@@ -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

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-dav.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-dav.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-dav.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-dav.conf.in Tue Jun 15 11:05:13 2010
@@ -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.

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in Tue Jun 15 11:05:13 2010
@@ -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,

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-manual.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-manual.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-manual.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-manual.conf.in Tue Jun 15 11:05:13 2010
@@ -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"

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-multilang-errordoc.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-multilang-errordoc.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-multilang-errordoc.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-multilang-errordoc.conf.in Tue Jun 15 11:05:13 2010
@@ -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_<error>.html.var response to
 # our collection of by-error message multi-language collections.  We use 

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-ssl.conf.in Tue Jun 15 11:05:13 2010
@@ -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):

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-userdir.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-userdir.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-userdir.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-userdir.conf.in Tue Jun 15 11:05:13 2010
@@ -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

Modified: httpd/httpd/trunk/docs/conf/extra/httpd-vhosts.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-vhosts.conf.in?rev=954816&r1=954815&r2=954816&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-vhosts.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-vhosts.conf.in Tue Jun 15 11:05:13 2010
@@ -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