You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2001/10/03 19:44:34 UTC

cvs commit: httpd-2.0/docs/conf httpd-std.conf

rbb         01/10/03 10:44:34

  Modified:    docs/conf httpd-std.conf
  Log:
  Add a Listen directive to the default config file.  This allows us to
  later add another listen directive, in the default SSL config file,
  without stopping the server from listening on port 80.  The next step
  is to combine the Port and ServerName directives, so that Port can go
  away finally.
  
  Revision  Changes    Path
  1.51      +3 -2      httpd-2.0/docs/conf/httpd-std.conf
  
  Index: httpd-std.conf
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-std.conf,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- httpd-std.conf	2001/09/24 06:44:39	1.50
  +++ httpd-std.conf	2001/10/03 17:44:34	1.51
  @@ -173,9 +173,10 @@
   #
   # Listen: Allows you to bind Apache to specific IP addresses and/or
   # ports, in addition to the default. See also the <VirtualHost>
  -# directive.
  +# directive.  If this directive is present, then the Port directive
  +# above does not effect which port is bound.
   #
  -#Listen 3000
  +Listen 80
   #Listen 12.34.56.78:80
   
   #