From 45ad5df2152f4347a8d67940269e1095277aab8d Mon Sep 17 00:00:00 2001 From: pcs Date: Thu, 11 Sep 1997 13:27:52 +0000 Subject: [PATCH] Change Module line examples into AddModule to reflect the new Configure syntax git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79176 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_example.html | 5 +++-- docs/manual/mod/mod_info.html | 2 +- docs/manual/mod/mod_mime_magic.html | 2 +- docs/manual/mod/mod_rewrite.html | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/manual/mod/mod_example.html b/docs/manual/mod/mod_example.html index 5ac54af327..27ef38796e 100644 --- a/docs/manual/mod/mod_example.html +++ b/docs/manual/mod/mod_example.html @@ -47,11 +47,12 @@ To include the example module in your server, follow the steps below:

    -
  1. Uncomment the "Module example_module" line near the bottom of +
  2. Uncomment the "AddModule modules/example/mod_example" line near + the bottom of the src/Configuration file. If there isn't one, add it; it should look like this:
    -     Module example_module        modules/example/mod_example.o
    +     AddModule modules/example/mod_example.o
         
  3. Run the src/Configure script diff --git a/docs/manual/mod/mod_info.html b/docs/manual/mod/mod_info.html index a4e1ac1761..984a68b12c 100644 --- a/docs/manual/mod/mod_info.html +++ b/docs/manual/mod/mod_info.html @@ -24,7 +24,7 @@ enable it, add the following line to the server build Configuration file, and rebuild the server:
    -Module info_module   mod_info.o
    +AddModule modules/standard/mod_info.o
     

    Directives

    diff --git a/docs/manual/mod/mod_mime_magic.html b/docs/manual/mod/mod_mime_magic.html index f7c88da4a9..3bd92ec28d 100644 --- a/docs/manual/mod/mod_mime_magic.html +++ b/docs/manual/mod/mod_mime_magic.html @@ -25,7 +25,7 @@ server build Configuration file:
    -      Module mime_magic_module   mod_mime_magic.o
    +      AddModule modules/standard/mod_mime_magic.o
       
    This should be listed before mod_mime in the build diff --git a/docs/manual/mod/mod_rewrite.html b/docs/manual/mod/mod_rewrite.html index a67387ab90..50b721ebfc 100644 --- a/docs/manual/mod/mod_rewrite.html +++ b/docs/manual/mod/mod_rewrite.html @@ -25,7 +25,7 @@ URLs on the fly. mod_rewrite is not compiled into the server by default. To use mod_rewrite you have to enable the following line in the server build Configuration file:
    -    Module  rewrite_module   mod_rewrite.o
    +    AddModule  modules/standard/mod_rewrite.o
     

    Summary

    -- 2.40.0