You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 1999/08/18 21:31:11 UTC

cvs commit: apache-2.0/mpm/conf httpd.conf-dist-win

stoddard    99/08/18 12:31:09

  Modified:    mpm/conf httpd.conf-dist-win
  Log:
  Qualify the root Directory block directive with the ServerRoot drive letter. Not doing this causes directory_walk to check for a root .htaccess file, even if .htaccess files are disabled.
  
  Revision  Changes    Path
  1.2       +1 -1      apache-2.0/mpm/conf/httpd.conf-dist-win
  
  Index: httpd.conf-dist-win
  ===================================================================
  RCS file: /home/cvs/apache-2.0/mpm/conf/httpd.conf-dist-win,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- httpd.conf-dist-win	1999/06/18 18:39:16	1.1
  +++ httpd.conf-dist-win	1999/08/18 19:31:04	1.2
  @@ -246,7 +246,7 @@
   # First, we configure the "default" to be a very restrictive set of 
   # permissions.  
   #
  -<Directory />
  +<Directory "@@ServerRoot@@/">
       Options FollowSymLinks
       AllowOverride None
   </Directory>