]> granicus.if.org Git - apache/commitdiff
Consistify the configuration files for the .41 release. This brings
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 16 Sep 2002 16:57:04 +0000 (16:57 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 16 Sep 2002 16:57:04 +0000 (16:57 +0000)
  all three flavors back into sync.

  With luck, I won't be doing this again, but I need some time to play
  with awk magic first.  {The nested <IfModule> directives don't make
  this all that simple.}

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96841 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-nw.conf
docs/conf/httpd-std.conf.in
docs/conf/httpd-win.conf

index 1d0b41873e0fdc35fdc857fa66e219c14f6137e9..0717f3ed5a493fedf18743331252c1bf88b1df4e 100644 (file)
@@ -259,19 +259,10 @@ DocumentRoot "@@ServerRoot@@/htdocs"
     Order allow,deny
     Allow from all
 
-#
-# Note that directly accessing an index.html.var typemap is much faster
-# than using MultiViews negotation on a directory.  We distribute a typemap
-# of the complete index.html collection, so we use that index.html.var
-# typemap here.  If Options is set to Multiviews, this optimization is lost.
-#
-    AddHandler type-map var
-    DirectoryIndex index.html index.html.var
-
 </Directory>
 
 #
-# UserDir: The name of the directory which is appended onto a user's home
+# UserDir: The name of the directory that is appended onto a user's home
 # directory if a ~user request is received.  Be especially careful to use
 # proper, forward slashes here.
 #
@@ -302,11 +293,17 @@ UserDir "public_html"
 # DirectoryIndex: sets the file that Apache will serve if a directory
 # is requested.
 #
-DirectoryIndex index.html
+# The index.html.var file (a type-map) is used to deliver content-
+# negotiated documents.  The MultiViews Option can be used for the 
+# same purpose, but it is much slower.
+#
+DirectoryIndex index.html index.html.var
+
 
 #
 # AccessFileName: The name of the file to look for in each directory
-# for access control information.  See also the AllowOverride directive.
+# for additional configuration directives.  See also the AllowOverride 
+# directive.
 #
 AccessFileName .htaccess
 
@@ -355,6 +352,16 @@ DefaultType text/plain
 #
 HostnameLookups Off
 
+#
+# EnableMMAP: Control whether memory-mapping is used to deliver
+# files (assuming that the underlying OS supports it).
+# The default is on; turn this off if you serve from NFS-mounted 
+# filesystems.  On some systems, turning it off (regardless of
+# filesystem) can improve performance; for details, please see
+# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
+#
+#EnableMMAP off
+
 #
 # ErrorLog: The location of the error log file.
 # If you do not specify an ErrorLog directive within a <VirtualHost>
@@ -402,6 +409,16 @@ CustomLog logs/access.log common
 #
 #CustomLog logs/access.log combined
 
+#
+# ServerTokens
+# This directive configures what you return as the Server HTTP response
+# Header. The default is 'Full' which sends information about the OS-Type
+# and compiled in modules.
+# Set to one of:  Full | OS | Minor | Minimal | Major | Prod
+# where Full conveys the most information, and Prod the least.
+#
+ServerTokens Full
+
 #
 # Optionally add a line containing the server version and virtual host
 # name to server-generated pages (internal error documents, FTP directory 
@@ -482,10 +499,8 @@ ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/"
 #
 
 #
-# FancyIndexing is whether you want fancy directory indexing or standard.
-# VersionSort is whether files containing version numbers should be 
-# compared in the natural way, so that `apache-1.3.9.tar' is placed before
-# `apache-1.3.12.tar'.
+# IndexOptions: Controls the appearance of server-generated directory
+# listings.
 #
 IndexOptions FancyIndexing VersionSort
 
@@ -702,46 +717,47 @@ AddCharset EUC-KR      .euc-kr
 AddCharset shift_jis   .sjis
 
 #
-# AddType allows you to tweak mime.types without actually editing it, or to
-# make certain files to be certain types.
+# AddType allows you to add to or override the MIME configuration
+# file mime.types for specific file types.
 #
 AddType application/x-tar .tgz
 AddType image/x-icon .ico
 
 #
-# AddHandler allows you to map certain file extensions to "handlers",
+# AddHandler allows you to map certain file extensions to "handlers":
 # actions unrelated to filetype. These can be either built into the server
-# or added with the Action command (see below)
-#
-# If you want to use server side includes, or CGI outside
-# ScriptAliased directories, uncomment the following lines.
+# or added with the Action directive (see below)
 #
-# To use CGI scripts:
+# To use CGI scripts outside of ScriptAliased directories:
+# (You will also need to add "ExecCGI" to the "Options" directive.)
 #
 #AddHandler cgi-script .cgi
 
 #
-# To use server-parsed HTML files
+# For files that include their own HTTP headers:
 #
-#<FilesMatch "\.shtml(\..+)?$">
-#    SetOutputFilter INCLUDES
-#</FilesMatch>
+#AddHandler send-as-is asis
 
 #
-# Uncomment the following line to enable Apache's send-asis HTTP file
-# feature
+# For server-parsed imagemap files:
 #
-#AddHandler send-as-is asis
+#AddHandler imap-file map
 
 #
-# If you wish to use server-parsed imagemap files, use
+# For type maps (negotiated resources):
+# (This is enabled by default to allow the Apache "It Worked" page
+#  to be distributed in multiple languages.)
 #
-#AddHandler imap-file map
+AddHandler type-map var
 
 #
-# To enable type maps, you might want to use
+# Filters allow you to process content before it is sent to the client.
+#
+# To parse .shtml files for server-side includes (SSI):
+# (You will also need to add "Includes" to the "Options" directive.)
 #
-#AddHandler type-map var
+#AddType text/html .shtml
+#AddOutputFilter INCLUDES .shtml
 
 #
 # Action lets you define media types that will execute a script whenever
@@ -752,29 +768,15 @@ AddType image/x-icon .ico
 #
 
 #
-# Customizable error response (Apache style)
-#  these come in three flavors
+# Customizable error responses come in three flavors:
+# 1) plain text 2) local redirects 3) external redirects
 #
-#    1) plain text
+# Some examples:
 #ErrorDocument 500 "The server made a boo boo."
-#
-#    2) local redirects
 #ErrorDocument 404 /missing.html
-#  to redirect to local URL /missing.html
-#ErrorDocument 404 "/cgi-bin/missing_handlder.pl"
-#    i.e. any string which starts with a '/' and has
-#    no spaces.
-#  N.B.: You can redirect to a script or a document using server-side-includes.
-#
-#    3) external redirects
+#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
 #ErrorDocument 402 http://www.example.com/subscription_info.html
-#    i.e. any string whichis a valid  URL.
-#  N.B.: Many of the environment variables associated with the original
-#  request will *not* be available to such a script.
 #
-#    4) borderline case
-#ErrorDocument 402 "http://www.example.com/info.html is the place to look"
-#    treated as case '1' as it has spaces and thus is not a valid URL
 
 #
 # Putting this all together, we can internationalize error responses.
@@ -843,9 +845,11 @@ BrowserMatch "JDK/1\.0" force-response-1.0
 # a directory that does not include the trailing slash.  This fixes a 
 # problem with Microsoft WebFolders which does not appropriately handle 
 # redirects for folders with DAV methods.
+# Same deal with Apple's DAV filesystem.
 #
 BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
 BrowserMatch "^WebDrive" redirect-carefully
+BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
 
 #
 # Allow server status reports generated by mod_status, 
index 32608f396bee9f28bf889d06e97bd14b5f23f070..be7063cf702b56b7b40568d878147985482c6aa8 100644 (file)
@@ -452,7 +452,7 @@ HostnameLookups Off
 # filesystem) can improve performance; for details, please see
 # http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
 #
-# EnableMMAP off
+#EnableMMAP off
 
 #
 # ErrorLog: The location of the error log file.
@@ -508,7 +508,9 @@ CustomLog @rel_logfiledir@/access_log common
 # and compiled in modules.
 # Set to one of:  Full | OS | Minor | Minimal | Major | Prod
 # where Full conveys the most information, and Prod the least.
+#
 ServerTokens Full
+
 #
 # Optionally add a line containing the server version and virtual host
 # name to server-generated pages (internal error documents, FTP directory 
@@ -848,6 +850,7 @@ AddType image/x-icon .ico
 #
 AddHandler type-map var
 
+#
 # Filters allow you to process content before it is sent to the client.
 #
 # To parse .shtml files for server-side includes (SSI):
index 1f67c9cb21e3b011c9367f0ad18adcf284c8145e..09aeab5a68c1a52ae9f06d7f0b3c9a79a8a5a227 100644 (file)
@@ -321,7 +321,8 @@ DirectoryIndex index.html index.html.var
 
 #
 # AccessFileName: The name of the file to look for in each directory
-# for access control information.  See also the AllowOverride directive.
+# for additional configuration directives.  See also the AllowOverride 
+# directive.
 #
 AccessFileName .htaccess
 
@@ -370,6 +371,16 @@ DefaultType text/plain
 #
 HostnameLookups Off
 
+#
+# EnableMMAP: Control whether memory-mapping is used to deliver
+# files (assuming that the underlying OS supports it).
+# The default is on; turn this off if you serve from NFS-mounted 
+# filesystems.  On some systems, turning it off (regardless of
+# filesystem) can improve performance; for details, please see
+# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
+#
+#EnableMMAP off
+
 #
 # ErrorLog: The location of the error log file.
 # If you do not specify an ErrorLog directive within a <VirtualHost>
@@ -417,6 +428,16 @@ CustomLog logs/access.log common
 #
 #CustomLog logs/access.log combined
 
+#
+# ServerTokens
+# This directive configures what you return as the Server HTTP response
+# Header. The default is 'Full' which sends information about the OS-Type
+# and compiled in modules.
+# Set to one of:  Full | OS | Minor | Minimal | Major | Prod
+# where Full conveys the most information, and Prod the least.
+#
+ServerTokens Full
+
 #
 # Optionally add a line containing the server version and virtual host
 # name to server-generated pages (internal error documents, FTP directory 
@@ -748,6 +769,7 @@ AddType image/x-icon .ico
 #
 AddHandler type-map var
 
+#
 # Filters allow you to process content before it is sent to the client.
 #
 # To parse .shtml files for server-side includes (SSI):
@@ -844,9 +866,11 @@ BrowserMatch "JDK/1\.0" force-response-1.0
 # a directory that does not include the trailing slash.  This fixes a 
 # problem with Microsoft WebFolders which does not appropriately handle 
 # redirects for folders with DAV methods.
+# Same deal with Apple's DAV filesystem.
 #
 BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
 BrowserMatch "^WebDrive" redirect-carefully
+BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
 
 #
 # Allow server status reports generated by mod_status,