You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pc...@hyperreal.org on 1998/06/08 16:37:27 UTC

cvs commit: apache-1.3/conf access.conf-dist-win httpd.conf-dist-win srm.conf-dist-win

pcs         98/06/08 07:37:27

  Modified:    conf     access.conf-dist-win httpd.conf-dist-win
                        srm.conf-dist-win
  Log:
  Double-quote all @@ServerRoot@@ expansions [Martin Kraemer]
  
  Revision  Changes    Path
  1.8       +1 -1      apache-1.3/conf/access.conf-dist-win
  
  Index: access.conf-dist-win
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/conf/access.conf-dist-win,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- access.conf-dist-win	1998/06/06 19:47:13	1.7
  +++ access.conf-dist-win	1998/06/08 14:37:26	1.8
  @@ -56,7 +56,7 @@
   # @@ServerRoot@@/cgi-bin should be changed to whatever your ScriptAliased
   # CGI directory exists, if you have that configured.
   
  -<Directory @@ServerRoot@@/cgi-bin>
  +<Directory "@@ServerRoot@@/cgi-bin">
   AllowOverride None
   Options None
   </Directory>
  
  
  
  1.15      +1 -1      apache-1.3/conf/httpd.conf-dist-win
  
  Index: httpd.conf-dist-win
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/conf/httpd.conf-dist-win,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- httpd.conf-dist-win	1998/05/30 14:46:49	1.14
  +++ httpd.conf-dist-win	1998/06/08 14:37:26	1.15
  @@ -184,7 +184,7 @@
   
   # To enable the cache as well, edit and uncomment the following lines:
   
  -#CacheRoot @@ServerRoot@@/proxy
  +#CacheRoot "@@ServerRoot@@/proxy"
   #CacheSize 5
   #CacheGcInterval 4
   #CacheMaxExpire 24
  
  
  
  1.12      +2 -2      apache-1.3/conf/srm.conf-dist-win
  
  Index: srm.conf-dist-win
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/conf/srm.conf-dist-win,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- srm.conf-dist-win	1998/05/30 14:46:49	1.11
  +++ srm.conf-dist-win	1998/06/08 14:37:26	1.12
  @@ -143,12 +143,12 @@
   # require it to be present in the URL.  So "/icons" isn't aliased in this
   # example.
   
  -Alias /icons/ @@ServerRoot@@/icons/
  +Alias /icons/ "@@ServerRoot@@/icons/"
   
   # ScriptAlias: This controls which directories contain server scripts.
   # Format: ScriptAlias fakename realname
   
  -#ScriptAlias /cgi-bin/ @@ServerRoot@@/cgi-bin/
  +#ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/"
   
   # If you want to use server side includes, or CGI outside
   # ScriptAliased directories, uncomment the following lines.