cvs commit: apache-1.3/htdocs/manual/vhosts virtual-host.html

1998-07-16 Thread lars
lars98/07/16 15:59:59

  Modified:htdocs/manual/vhosts virtual-host.html
  Log:
  fix some broken links
  
  Revision  ChangesPath
  1.7   +24 -24apache-1.3/htdocs/manual/vhosts/virtual-host.html
  
  Index: virtual-host.html
  ===
  RCS file: /home/cvs/apache-1.3/htdocs/manual/vhosts/virtual-host.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- virtual-host.html 1998/05/20 14:22:48 1.6
  +++ virtual-host.html 1998/07/16 22:59:58 1.7
  @@ -66,11 +66,11 @@
   Use multiple daemons when:
   
   The different virtual hosts need very different httpd configurations, 
such
  -   as different values for: ServerType,
  -   User,
  -   Group,
  -   TypesConfig or
  -   ServerRoot.
  +   as different values for: ServerType,
  +   User,
  +   Group,
  +   TypesConfig or
  +   ServerRoot.
   The machine does not process a very high request rate.
   
   Use a single daemon when:
  @@ -83,7 +83,7 @@
   Setting up multiple daemons
   Create a separate httpd installation for each virtual host.
   For each installation, use the
  -BindAddress directive in the
  +BindAddress directive in the
   configuration
   file to select which IP address (or virtual host) that daemon services.
   E.g.,
  @@ -92,13 +92,13 @@
   
   Setting up a single daemon
   For this case, a single httpd will service requests for all the virtual 
hosts.
  -The VirtualHost directive in the
  +The VirtualHost directive in the
configuration file is used to set the values of
  -ServerAdmin,
  -ServerName,
  -DocumentRoot,
  -ErrorLog and
  -TransferLog configuration
  +ServerAdmin,
  +ServerName,
  +DocumentRoot,
  +ErrorLog and
  +TransferLog 
configuration
   directives to different values for each virtual host.
   E.g.,
   
  @@ -125,24 +125,24 @@
   
   Almost ANY configuration directive can be put
   in the VirtualHost directive, with the exception of
  -ServerType,
  -User,
  -Group,
  -StartServers,
  -MaxSpareServers,
  -MinSpareServers,
  -MaxRequestsPerChild,
  -BindAddress,
  -PidFile,
  -TypesConfig, and
  -ServerRoot.
  +ServerType,
  +User,
  +Group,
  +StartServers,
  +MaxSpareServers,
  +MinSpareServers,
  +MaxRequestsPerChild,
  +BindAddress,
  +PidFile,
  +TypesConfig, and
  +ServerRoot.
   
   
   
   SECURITY: When specifying where to write log files, be aware
   of some security risks which are present if anyone other than the
   user that starts Apache has write access to the directory where they
  -are written.  See the security
  +are written.  See the security
   tips document for details.
   
   
  
  
  


cvs commit: apache-1.3/src CHANGES

1998-07-16 Thread lars
lars98/07/16 14:50:28

  Modified:src  CHANGES
  Log:
  add info about PR#2613
  
  Revision  ChangesPath
  1.967 +3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.966
  retrieving revision 1.967
  diff -u -r1.966 -r1.967
  --- CHANGES   1998/07/15 23:49:09 1.966
  +++ CHANGES   1998/07/16 21:50:25 1.967
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) 'apachectl status' failed on some systems.
  + [Steve VanDevender <[EMAIL PROTECTED]>, Lars Eilebrecht] PR#2613
  +
 *) Add new flags for ap_unparse_uri_components() to make it generate
the scheme://sitepart string only, or to omit the query string.
[Martin Kraemer]
  
  
  


cvs commit: apache-1.3/src/support apachectl

1998-07-16 Thread lars
lars98/07/16 14:25:55

  Modified:src/support apachectl
  Log:
  Fix 'status' output.
  Solaris' awk sucks. I think this is a more portable solution.
  (tested under Solaris, SunOS, Digital Unix and Linux)
  
  PR: 2613
  
  Revision  ChangesPath
  1.9   +1 -1  apache-1.3/src/support/apachectl
  
  Index: apachectl
  ===
  RCS file: /home/cvs/apache-1.3/src/support/apachectl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- apachectl 1998/06/25 19:14:44 1.8
  +++ apachectl 1998/07/16 21:25:54 1.9
  @@ -136,7 +136,7 @@
fi
;;
   status)
  - $LYNX $STATUSURL | awk '  { if (/current process/) { print; exit } else 
print } '
  + $LYNX $STATUSURL | awk ' /process$/ { print; exit } { print } '
;;
   fullstatus)
$LYNX $STATUSURL
  
  
  


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

1998-07-16 Thread marc
marc98/07/16 13:24:41

  Modified:conf access.conf-dist-win httpd.conf-dist-win
  Log:
  A few minor win32 cleanups.  More work is required to make the
  *-win files make sense.
  
  Revision  ChangesPath
  1.9   +5 -4  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.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- access.conf-dist-win  1998/06/08 14:37:26 1.8
  +++ access.conf-dist-win  1998/07/16 20:24:40 1.9
  @@ -18,10 +18,11 @@
   # First, we configure the "default" to be a very restrictive set of 
   # permissions.  
   
  -
  -Options FollowSymLinks
  -AllowOverride None
  -
  +#  disabled because it is currently broken on Win32
  +#
  +#Options FollowSymLinks
  +#AllowOverride None
  +#
   
   # Note that from this point forward you must specifically allow
   # particular features to be enabled - so if something's not working as
  
  
  
  1.16  +0 -5  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.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- httpd.conf-dist-win   1998/06/08 14:37:26 1.15
  +++ httpd.conf-dist-win   1998/07/16 20:24:40 1.16
  @@ -47,11 +47,6 @@
   
   # If you wish httpd to run as a different user or group, you must run
   # httpd as root initially and it will switch.  
  -
  -# User/Group: The name (or #number) of the user/group to run httpd as.
  -User nobody
  -Group #-1
  -
   # ServerAdmin: Your address, where problems with the server should be
   # e-mailed.
   
  
  
  


cvs commit: apache-1.3 STATUS

1998-07-16 Thread martin
martin  98/07/16 01:30:31

  Modified:.STATUS
  Log:
  Add ftp proxy auth patch
  
  Revision  ChangesPath
  1.439 +5 -0  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.438
  retrieving revision 1.439
  diff -u -u -r1.438 -r1.439
  --- STATUS1998/07/13 06:53:02 1.438
  +++ STATUS1998/07/16 08:30:30 1.439
  @@ -87,6 +87,11 @@
 process.
 See: <[EMAIL PROTECTED]>
   
  +* Martin's patch to use the Basic Authentication scheme for (proxy-)
  +  ftp logins as well. When no password is given, but the ftp server
  +  requires one, a [401 Auth Required] response is generated on-the-fly.
  +  See: <[EMAIL PROTECTED]>
  +
   In progress:

   * Ken's IndexFormat enhancement to mod_autoindex to allow
  
  
  


cvs commit: apache-1.3 Announcement

1998-07-16 Thread jim
jim 98/07/15 17:19:54

  Modified:.Announcement
  Log:
  Explain Win32
  
  Revision  ChangesPath
  1.33  +1 -1  apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /export/home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- Announcement  1998/07/16 00:18:07 1.32
  +++ Announcement  1998/07/16 00:19:54 1.33
  @@ -32,7 +32,7 @@
   In general, Apache 1.3 offers several substantial improvements
   over version 1.2, including better performance, reliability
   and a wider-range of supported platforms, including Windows 95 and
  -NT.
  +NT (these 2 platforms are collectively termed "Win32").
   
   Apache is the most popular web-server in the known universe; over
   half of the servers on the Internet are running Apache or one of its
  
  
  


cvs commit: apache-1.3 Announcement

1998-07-16 Thread jim
jim 98/07/15 17:18:11

  Modified:.Announcement
  Log:
  Gently 'push' people to upgrade to 1.3.1 :)
  
  Revision  ChangesPath
  1.32  +2 -1  apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /export/home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- Announcement  1998/07/15 06:51:58 1.31
  +++ Announcement  1998/07/16 00:18:07 1.32
  @@ -12,7 +12,8 @@
   
   Users on other platforms should review the CHANGES file and decide
   on their upgrade plans; the security issues apply only to Apache
  -on Win32.
  +on Win32. We consider Apache 1.3.1 to be the most stable version
  +of Apache available.
   
   Apache 1.3.1 is available for download from