]> granicus.if.org Git - apache/commitdiff
Change Module line examples into AddModule to reflect the new Configure
authorpcs <pcs@unknown>
Thu, 11 Sep 1997 13:27:52 +0000 (13:27 +0000)
committerpcs <pcs@unknown>
Thu, 11 Sep 1997 13:27:52 +0000 (13:27 +0000)
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
docs/manual/mod/mod_info.html
docs/manual/mod/mod_mime_magic.html
docs/manual/mod/mod_rewrite.html

index 5ac54af3278a99ea25263fc5cd9eebb98b033c34..27ef38796e11e43b5e25e773db23ff7ead0ae6a6 100644 (file)
   To include the example module in your server, follow the steps below:
   </P>
   <OL>
-   <LI>Uncomment the "Module example_module" line near the bottom of
+   <LI>Uncomment the "AddModule modules/example/mod_example" line near 
+    the bottom of
     the <CODE>src/Configuration</CODE> file.  If there isn't one, add
     it; it should look like this:
     <PRE>
-     Module example_module        modules/example/mod_example.o
+     AddModule modules/example/mod_example.o
     </PRE>
    </LI>
    <LI>Run the <CODE>src/Configure</CODE> script
index a4e1ac176149bea4fb8a276965007233104da91b..984a68b12c930c5c87aa47152ec17846d0ece20d 100644 (file)
@@ -24,7 +24,7 @@ enable it, add the following line to the server build Configuration
 file, and rebuild the server:
 
 <PRE>
-Module info_module   mod_info.o
+AddModule modules/standard/mod_info.o
 </PRE>
 
 <H2>Directives</H2>
index f7c88da4a9624d4be10c712b558cc2a8ee1db410..3bd92ec28d4c073e32fdb77f40a1178ebe0b5c92 100644 (file)
@@ -25,7 +25,7 @@
   server build <tt>Configuration</tt> file: 
 
   <pre>
-      Module mime_magic_module   mod_mime_magic.o
+      AddModule modules/standard/mod_mime_magic.o
   </pre>
 
   This should be listed <em>before</em> mod_mime in the build
index a67387ab90b5ce96b362f4b32af5079018431bd8..50b721ebfc70f98e3895d0d597807acd80444345 100644 (file)
@@ -25,7 +25,7 @@ URLs on the fly.   <code>mod_rewrite</code> is not compiled into the server by
 default. To use <code>mod_rewrite</code> you have to enable the following line
 in the server build Configuration file:
 <pre>
-    Module  rewrite_module   mod_rewrite.o
+    AddModule  modules/standard/mod_rewrite.o
 </pre>
 
 <h2>Summary</h2>