From 5f3a347a25a966c5a54c4c75ad30b15fe7bc14d5 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Wed, 22 Nov 2000 19:53:50 +0000 Subject: [PATCH] Addition of BindAddress and small cleanups of upgrading/new features docs. 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 | 2 + docs/manual/new_features_2_0.html.en | 2 + docs/manual/upgrading.html | 58 +++++++++++++++++----------- docs/manual/upgrading.html.en | 58 +++++++++++++++++----------- 4 files changed, 74 insertions(+), 46 deletions(-) diff --git a/docs/manual/new_features_2_0.html b/docs/manual/new_features_2_0.html index fb885e4ea3..1af9088b39 100644 --- a/docs/manual/new_features_2_0.html +++ b/docs/manual/new_features_2_0.html @@ -45,6 +45,8 @@ allow more flexibility. Also, new calls have been added that provide additional module capabilities without patching the core Apache server. + +


Module Enhancements:

diff --git a/docs/manual/new_features_2_0.html.en b/docs/manual/new_features_2_0.html.en index fb885e4ea3..1af9088b39 100644 --- a/docs/manual/new_features_2_0.html.en +++ b/docs/manual/new_features_2_0.html.en @@ -45,6 +45,8 @@ allow more flexibility. Also, new calls have been added that provide additional module capabilities without patching the core Apache server. + +


Module Enhancements:

diff --git a/docs/manual/upgrading.html b/docs/manual/upgrading.html index 990a064936..077b5d290b 100644 --- a/docs/manual/upgrading.html +++ b/docs/manual/upgrading.html @@ -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. -
  • 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.
  • +
  • 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).
  • Run-Time Configuration Changes

    @@ -42,28 +41,41 @@ the argument on or off. Existing instances of CacheNegotiatedDocs should be replaced with CachNegotiatedDocs on. -
  • The ErrorDocument 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 ErrorDocument 403 "Some -Message should be replaced with ErrorDocument 403 "Some -Message". As long as the second argument is not a valid URL or -pathname, it will be treated as a text message.
  • +
  • The ErrorDocument 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
    ErrorDocument 403 "Some +Message
    should be replaced with +
    ErrorDocument 403 "Some +Message"
    As long as the second argument is not a +valid URL or pathname, it will be treated as a text message.
  • The AccessConfig and ResourceConfig directives no longer exist. Existing instances of these directives -can be replaced with the Include 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 -Include conf/access.conf and Include conf/srm.conf -to your httpd.conf.
  • - -
  • The ExtendedStatus directive no longer exists.
  • - -
  • The ServerType directive no longer exists.
  • - -
  • The CoreDumpDirectory directive no longer exists.
  • +can be replaced with the Include 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 Include conf/access.conf and +Include conf/srm.conf 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 Include +directives should be placed at the end of httpd.conf, with the one for +srm.conf preceeding the one of +access.conf. + +
  • The BindAddress directive no longer exists. +Equivalent functionality is provided with the more flexible Listen directive. + +
  • The ExtendedStatus directive no longer exists. +Status reporting has been completely rewritten to take advantage +of the new MPM system.
  • + +
  • The ServerType 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.
  • Many directives that were in the core server in Apache 1.3 are now in the MPMs.
  • diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 990a064936..077b5d290b 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -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. -
  • 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.
  • +
  • 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).
  • Run-Time Configuration Changes

    @@ -42,28 +41,41 @@ the argument on or off. Existing instances of CacheNegotiatedDocs should be replaced with CachNegotiatedDocs on. -
  • The ErrorDocument 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 ErrorDocument 403 "Some -Message should be replaced with ErrorDocument 403 "Some -Message". As long as the second argument is not a valid URL or -pathname, it will be treated as a text message.
  • +
  • The ErrorDocument 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
    ErrorDocument 403 "Some +Message
    should be replaced with +
    ErrorDocument 403 "Some +Message"
    As long as the second argument is not a +valid URL or pathname, it will be treated as a text message.
  • The AccessConfig and ResourceConfig directives no longer exist. Existing instances of these directives -can be replaced with the Include 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 -Include conf/access.conf and Include conf/srm.conf -to your httpd.conf.
  • - -
  • The ExtendedStatus directive no longer exists.
  • - -
  • The ServerType directive no longer exists.
  • - -
  • The CoreDumpDirectory directive no longer exists.
  • +can be replaced with the Include 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 Include conf/access.conf and +Include conf/srm.conf 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 Include +directives should be placed at the end of httpd.conf, with the one for +srm.conf preceeding the one of +access.conf. + +
  • The BindAddress directive no longer exists. +Equivalent functionality is provided with the more flexible Listen directive. + +
  • The ExtendedStatus directive no longer exists. +Status reporting has been completely rewritten to take advantage +of the new MPM system.
  • + +
  • The ServerType 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.
  • Many directives that were in the core server in Apache 1.3 are now in the MPMs.
  • -- 2.50.1