diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-07-12 04:03:02 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-07-12 04:03:02 +0000 |
commit | 9308569adb3772e0174193b5dc4a867b8d2b1c6f (patch) | |
tree | 17d8c1844db2462e98666bd67bb1a7f697750d18 /docs/conf | |
parent | 020e83584ec7daab3cca13018751d548de090ec8 (diff) | |
download | httpd-9308569adb3772e0174193b5dc4a867b8d2b1c6f.tar.gz |
Fix a [very few] config changes. Yes - needs to be awk-ized, but not
at this moment.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96022 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/conf')
-rw-r--r-- | docs/conf/httpd-win.conf | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/conf/httpd-win.conf b/docs/conf/httpd-win.conf index de0d1ac109..a5627a0d7d 100644 --- a/docs/conf/httpd-win.conf +++ b/docs/conf/httpd-win.conf @@ -25,8 +25,8 @@ # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so "logs/foo.log" -# with ServerRoot set to "/usr/local/apache" will be interpreted by the -# server as "/usr/local/apache/logs/foo.log". +# with ServerRoot set to "@@ServerRoot@@" will be interpreted by the +# server as "@@ServerRoot@@/logs/foo.log". # # NOTE: Where filenames are specified, you must use forward slashes # instead of backslashes (e.g., "c:/apache" instead of "c:\apache"). @@ -497,10 +497,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 @@ -754,6 +752,7 @@ AddHandler type-map var # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # +#AddType text/html .shtml #AddOutputFilter INCLUDES .shtml # |