dgaudet     98/06/06 12:47:00

  Modified:    src      CHANGES
               conf     access.conf-dist
  Log:
  Change "Options None" to "Options FollowSymLinks" in the default
  <Directory /> section... given that we already default to symlinks
  elsewhere it doesn't make sense to disallow them here... and it's slower
  to disallow them.  Related to PR 2363.
  
  Revision  Changes    Path
  1.891     +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.890
  retrieving revision 1.891
  diff -u -r1.890 -r1.891
  --- CHANGES   1998/06/06 19:30:38     1.890
  +++ CHANGES   1998/06/06 19:46:58     1.891
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.1
   
  +  *) Change "Options None" to "Options FollowSymLinks" in the 
  +     <Directory /> section of the default access.conf-dist
  +     (and -win even though it doesn't matter there).  This has better
  +     performance, and more intuitive semantics.  [Dean Gaudet]
  +
     *) PORT: Updated support for UTS 2.1.2.
        [Dave Dykstra <[EMAIL PROTECTED]>] PR#2320
   
  
  
  
  1.14      +1 -1      apache-1.3/conf/access.conf-dist
  
  Index: access.conf-dist
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/conf/access.conf-dist,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- access.conf-dist  1998/05/29 01:27:49     1.13
  +++ access.conf-dist  1998/06/06 19:46:59     1.14
  @@ -14,7 +14,7 @@
   # permissions.  
   
   <Directory />
  -Options None
  +Options FollowSymLinks
   AllowOverride None
   </Directory>
   
  
  
  

Reply via email to