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

cvs commit: httpd-2.0/docs/manual/platform windows.html

jerenkrantz    01/10/18 23:05:40

  Modified:    docs/manual bind.html invoking.html upgrading.html.en
               docs/manual/misc rewriteguide.html
               docs/manual/platform windows.html
  Log:
  Remove all references to the Port directive and replace it with
  appropriate links to the Listen directive.
  
  If I had known that so many files had the Port directive in it, I would
  have bundled this up as one big commit.  *sigh*  I just kept looking
  and finding new files, fixing, and committing.  So, this should be the
  rest of them for now.
  
  Revision  Changes    Path
  1.18      +6 -10     httpd-2.0/docs/manual/bind.html
  
  Index: bind.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/bind.html,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- bind.html	2001/09/22 18:53:20	1.17
  +++ bind.html	2001/10/19 06:05:39	1.18
  @@ -18,20 +18,17 @@
   
       <p>When Apache starts, it connects to some port and address on
       the local machine and waits for incoming requests. By default,
  -    it listens to all addresses on the machine, and to the port as
  -    specified by the <code>Port</code> directive in the server
  -    configuration. However, it can be told to listen to more the
  -    one port, or to listen to only selected addresses, or a
  -    combination. This is often combined with the Virtual Host
  -    feature which determines how Apache responds to different IP
  -    addresses, hostnames and ports.</p>
  +    it listens to all addresses on the machine.  However, it needs to
  +    be told to listen to specific ports, or to listen to only selected 
  +    addresses, or a combination. This is often combined with the 
  +    Virtual Host feature which determines how Apache responds to 
  +    different IP addresses, hostnames and ports.</p>
   
       <p>The <code>Listen</code> directive tells the server to accept
       incoming requests only on the specified port or
       address-and-port combinations. If only a port number is
       specified in the <code>Listen</code> directive, the server
  -    listens to the given port on all interfaces, instead of the
  -    port given by the <code>Port</code> directive. If an IP address
  +    listens to the given port on all interfaces. If an IP address
       is given as well as a port, the server will listen on the given
       port and interface. Multiple Listen directives may be used to
       specify a number of addresses and ports to listen to. The
  @@ -70,7 +67,6 @@
       See also the documentation on <a
       href="mod/mpm_common.html#listen">Listen directive</a>, <a
       href="vhosts/">Virtual Hosts</a>, <a
  -    href="mod/core.html#port">Port directive</a>, <a
       href="dns-caveats.html">DNS Issues</a> and <a
       href="mod/core.html#virtualhost">&lt;VirtualHost&gt;
       section</a>. <!--#include virtual="footer.html" -->
  
  
  
  1.34      +2 -2      httpd-2.0/docs/manual/invoking.html
  
  Index: invoking.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/invoking.html,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- invoking.html	2001/09/22 18:53:20	1.33
  +++ invoking.html	2001/10/19 06:05:39	1.34
  @@ -46,8 +46,8 @@
       is run as a daemon which executes continuously in the
       background to handle requests.</p>
   
  -    <p>If the <a href="mod/core.html#port">Port</a> specified in
  -    the configuration file is the default of 80 (or any other port
  +    <p>If the <a href="mod/mpm_common.html#Listen">Listen</a> specified in
  +    the configuration file is default of 80 (or any other port
       below 1024), then it is necessary to have root privileges in
       order to start apache, so that it can bind to this privileged
       port. Once the server has started and performed a few
  
  
  
  1.16      +3 -2      httpd-2.0/docs/manual/upgrading.html.en
  
  Index: upgrading.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/upgrading.html.en,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- upgrading.html.en	2001/09/22 18:53:20	1.15
  +++ upgrading.html.en	2001/10/19 06:05:39	1.16
  @@ -86,8 +86,9 @@
         of httpd.conf, with the one for <code>srm.conf</code>
         preceding the one for <code>access.conf</code>.</li>
   
  -      <li>The <code>BindAddress</code> directive no longer exists.
  -      Equivalent functionality is provided with the more flexible
  +      <li>The <code>BindAddress</code> and <code>Port</code> 
  +      directives no longer exist.  Equivalent functionality is 
  +      provided with the more flexible 
         <code><a href="mod/mpm_common.html#listen">Listen</a></code>
         directive.</li>
   
  
  
  
  1.9       +1 -1      httpd-2.0/docs/manual/misc/rewriteguide.html
  
  Index: rewriteguide.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/misc/rewriteguide.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- rewriteguide.html	2001/09/22 19:33:40	1.8
  +++ rewriteguide.html	2001/10/19 06:05:39	1.9
  @@ -1477,7 +1477,7 @@
   
   #   server type
   ServerType           standalone
  -Port                 8000
  +Listen               8000
   MinSpareServers      16
   StartServers         16
   MaxSpareServers      16
  
  
  
  1.44      +1 -2      httpd-2.0/docs/manual/platform/windows.html
  
  Index: windows.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/platform/windows.html,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- windows.html	2001/09/22 19:37:51	1.43
  +++ windows.html	2001/10/19 06:05:39	1.44
  @@ -220,8 +220,7 @@
   
       <p>After starting Apache running (either in a console window or
       as a service) if will be listening to port 80 (unless you
  -    changed the <samp>Port</samp>, <samp>Listen</samp> or
  -    <samp>BindAddress</samp> directives in the configuration
  +    changed the <samp>Listen</samp> directive in the configuration
       files). To connect to the server and access the default page,
       launch a browser and enter this URL:</p>
   <pre>