]> granicus.if.org Git - apache/commitdiff
Addition of BindAddress and small cleanups of upgrading/new features docs.
authorJoshua Slive <slive@apache.org>
Wed, 22 Nov 2000 19:53:50 +0000 (19:53 +0000)
committerJoshua Slive <slive@apache.org>
Wed, 22 Nov 2000 19:53:50 +0000 (19:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87069 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/new_features_2_0.html
docs/manual/new_features_2_0.html.en
docs/manual/upgrading.html
docs/manual/upgrading.html.en

index fb885e4ea3f17d30245f8154c2958d5a5bc7ba43..1af9088b3921f105e0f011f79e23545f611d325d 100644 (file)
@@ -45,6 +45,8 @@
     allow more flexibility. Also, new calls have been added that provide
     additional module capabilities without patching the core Apache server.
 
+</DL>
+
 <P><HR>
 
 <H2><A NAME="core">Module Enhancements:</A></H2>
index fb885e4ea3f17d30245f8154c2958d5a5bc7ba43..1af9088b3921f105e0f011f79e23545f611d325d 100644 (file)
@@ -45,6 +45,8 @@
     allow more flexibility. Also, new calls have been added that provide
     additional module capabilities without patching the core Apache server.
 
+</DL>
+
 <P><HR>
 
 <H2><A NAME="core">Module Enhancements:</A></H2>
index 990a0649368334382434191db79992770cab1fe9..077b5d290b1a00fca6fb777eb651d5f997b4df5e 100644 (file)
@@ -28,10 +28,9 @@ system for configuring the build processes.  Using this system
 is similar to, but not the same as, using the APACI system in
 Apache 1.3.  Further documentation to follow.</li>
 
-<li>In addition to the usual selection of modules which you can
-choose to compile, Apache 2.0 has moved the main part of request
-processing into Multi-Processing-Modules (MPMs).  Documentation
-on how to select an MPM is to follow.</li>
+<li>In addition to the usual selection of modules which you can choose
+to compile, Apache 2.0 has moved the main part of request processing
+into <a href="mpm.html">Multi-Processing Modules</a> (MPMs).</li>
 </UL>
 
 <H3>Run-Time Configuration Changes</H3>
@@ -42,28 +41,41 @@ the argument <code>on</code> or <code>off</code>.  Existing
 instances of <code>CacheNegotiatedDocs</code> should be replaced
 with <code>CachNegotiatedDocs on</code>.</li>
 
-<li>The <code>ErrorDocument</code> directive no longer uses a single
-quote at the beginning of the argument to indicate a text message.
-Instead, you should enclose the message in double quotes.  For
-example, existing instances of <code>ErrorDocument 403 "Some
-Message</code> should be replaced with <code>ErrorDocument 403 "Some
-Message"</code>.  As long as the second argument is not a valid URL or
-pathname, it will be treated as a text message.</li>
+<li>The <code>ErrorDocument</code> directive no longer uses a quote at
+the beginning of the argument to indicate a text message.  Instead,
+you should enclose the message in double quotes.  For example,
+existing instances of <blockquote><code>ErrorDocument 403 "Some
+Message</code></blockquote> should be replaced with
+<blockquote><code>ErrorDocument 403 "Some
+Message"</code></blockquote>  As long as the second argument is not a
+valid URL or pathname, it will be treated as a text message.</li>
 
 <li>The <code>AccessConfig</code> and <code>ResourceConfig</code>
 directives no longer exist.  Existing instances of these directives
-can be replaced with the <code>Include</code> directive which
-has equivalent functionality.  If you were making use of the 
-default values of these directives without including them in
-the configuration files, you may need to add
-<code>Include conf/access.conf</code> and <code>Include conf/srm.conf</code>
-to your httpd.conf.</li>
-
-<li>The <code>ExtendedStatus</code> directive no longer exists.</li>
-
-<li>The <code>ServerType</code> directive no longer exists.</li>
-
-<li>The <code>CoreDumpDirectory</code> directive no longer exists.</li>
+can be replaced with the <a
+href="mod/core.html#include"><code>Include</code></a> directive which
+has equivalent functionality.  If you were making use of the default
+values of these directives without including them in the configuration
+files, you may need to add <code>Include conf/access.conf</code> and
+<code>Include conf/srm.conf</code> to your httpd.conf.  In order to
+assure that Apache reads the configuration files in the same order as
+was implied by the older directives, the <code>Include</code>
+directives should be placed at the end of httpd.conf, with the one for
+<code>srm.conf</code> preceeding the one of
+<code>access.conf</code>.</li>
+
+<li>The <code>BindAddress</code> directive no longer exists.
+Equivalent functionality is provided with the more flexible <code><a
+href="mod/mpm_common.html">Listen</a></code> directive.
+
+<li>The <code>ExtendedStatus</code> directive no longer exists.
+Status reporting has been completely rewritten to take advantage
+of the new MPM system.</li>
+
+<li>The <code>ServerType</code> directive no longer exists.
+The method used to serve requests is now determined by the selection
+of MPM.  There is currently no MPM designed to be launced by
+inetd.</li>
 
 <li>Many directives that were in the core server in Apache 1.3
 are now in the MPMs.</li>
index 990a0649368334382434191db79992770cab1fe9..077b5d290b1a00fca6fb777eb651d5f997b4df5e 100644 (file)
@@ -28,10 +28,9 @@ system for configuring the build processes.  Using this system
 is similar to, but not the same as, using the APACI system in
 Apache 1.3.  Further documentation to follow.</li>
 
-<li>In addition to the usual selection of modules which you can
-choose to compile, Apache 2.0 has moved the main part of request
-processing into Multi-Processing-Modules (MPMs).  Documentation
-on how to select an MPM is to follow.</li>
+<li>In addition to the usual selection of modules which you can choose
+to compile, Apache 2.0 has moved the main part of request processing
+into <a href="mpm.html">Multi-Processing Modules</a> (MPMs).</li>
 </UL>
 
 <H3>Run-Time Configuration Changes</H3>
@@ -42,28 +41,41 @@ the argument <code>on</code> or <code>off</code>.  Existing
 instances of <code>CacheNegotiatedDocs</code> should be replaced
 with <code>CachNegotiatedDocs on</code>.</li>
 
-<li>The <code>ErrorDocument</code> directive no longer uses a single
-quote at the beginning of the argument to indicate a text message.
-Instead, you should enclose the message in double quotes.  For
-example, existing instances of <code>ErrorDocument 403 "Some
-Message</code> should be replaced with <code>ErrorDocument 403 "Some
-Message"</code>.  As long as the second argument is not a valid URL or
-pathname, it will be treated as a text message.</li>
+<li>The <code>ErrorDocument</code> directive no longer uses a quote at
+the beginning of the argument to indicate a text message.  Instead,
+you should enclose the message in double quotes.  For example,
+existing instances of <blockquote><code>ErrorDocument 403 "Some
+Message</code></blockquote> should be replaced with
+<blockquote><code>ErrorDocument 403 "Some
+Message"</code></blockquote>  As long as the second argument is not a
+valid URL or pathname, it will be treated as a text message.</li>
 
 <li>The <code>AccessConfig</code> and <code>ResourceConfig</code>
 directives no longer exist.  Existing instances of these directives
-can be replaced with the <code>Include</code> directive which
-has equivalent functionality.  If you were making use of the 
-default values of these directives without including them in
-the configuration files, you may need to add
-<code>Include conf/access.conf</code> and <code>Include conf/srm.conf</code>
-to your httpd.conf.</li>
-
-<li>The <code>ExtendedStatus</code> directive no longer exists.</li>
-
-<li>The <code>ServerType</code> directive no longer exists.</li>
-
-<li>The <code>CoreDumpDirectory</code> directive no longer exists.</li>
+can be replaced with the <a
+href="mod/core.html#include"><code>Include</code></a> directive which
+has equivalent functionality.  If you were making use of the default
+values of these directives without including them in the configuration
+files, you may need to add <code>Include conf/access.conf</code> and
+<code>Include conf/srm.conf</code> to your httpd.conf.  In order to
+assure that Apache reads the configuration files in the same order as
+was implied by the older directives, the <code>Include</code>
+directives should be placed at the end of httpd.conf, with the one for
+<code>srm.conf</code> preceeding the one of
+<code>access.conf</code>.</li>
+
+<li>The <code>BindAddress</code> directive no longer exists.
+Equivalent functionality is provided with the more flexible <code><a
+href="mod/mpm_common.html">Listen</a></code> directive.
+
+<li>The <code>ExtendedStatus</code> directive no longer exists.
+Status reporting has been completely rewritten to take advantage
+of the new MPM system.</li>
+
+<li>The <code>ServerType</code> directive no longer exists.
+The method used to serve requests is now determined by the selection
+of MPM.  There is currently no MPM designed to be launced by
+inetd.</li>
 
 <li>Many directives that were in the core server in Apache 1.3
 are now in the MPMs.</li>