[deployment-guide/comm-rel: 522/727] Updated the LoadModule directive description.

Jaromir Hradilek jhradile at fedoraproject.org
Tue Oct 19 13:08:49 UTC 2010


commit 2160fb9798f6aebb00161c5c311d3a633e5c8699
Author: Jaromir Hradilek <jhradile at redhat.com>
Date:   Tue Aug 31 11:51:13 2010 +0200

    Updated the LoadModule directive description.

 en-US/The_Apache_HTTP_Server.xml |   33 +++++++++++++++++++--------------
 1 files changed, 19 insertions(+), 14 deletions(-)
---
diff --git a/en-US/The_Apache_HTTP_Server.xml b/en-US/The_Apache_HTTP_Server.xml
index a5ea96c..3bd4f2d 100644
--- a/en-US/The_Apache_HTTP_Server.xml
+++ b/en-US/The_Apache_HTTP_Server.xml
@@ -1205,6 +1205,25 @@ ErrorDocument 404 /404-not_found.html</screen>
             </example>
           </listitem>
         </varlistentry>
+        <varlistentry>
+          <term><option>LoadModule</option></term>
+          <listitem>
+            <para>
+              The <option>LoadModule</option> directive allows you to load a <firstterm>Dynamic Shared Object</firstterm> (<acronym>DSO</acronym>) module. It takes the following form: 
+            </para>
+            <screen>LoadModule <replaceable>name</replaceable> <replaceable>path</replaceable></screen>
+            <para>
+              The <replaceable>name</replaceable> has to be a valid identifier of the required module. The <replaceable>path</replaceable> refers to an existing module file, and must be relative to the directory in which the libraries are placed (that is, <filename class="directory">/usr/lib/httpd/</filename> by default).
+            </para>
+            <para>
+              Refer to <xref linkend="s1-apache-addmods" /> for more information on the Apache HTTP Server's DSO support.
+            </para>
+            <example id="example-apache-httpdconf-loadmodule">
+              <title>Using the <option>LoadModule</option> directive</title>
+              <screen>LoadModule php5_module modules/libphp5.so</screen>
+            </example>
+          </listitem>
+        </varlistentry>
       </variablelist>
       <formalpara id="s2-apache-indexoptions">
         <title>IndexOptions</title>
@@ -1232,20 +1251,6 @@ ErrorDocument 404 /404-not_found.html</screen>
       <para>
         <command>IndexOptions</command> has a number of other parameters which can be set to control the appearance of server generated directories. The <command>IconHeight</command> and <command>IconWidth</command> parameters require the server to include HTML <command>HEIGHT</command> and <command>WIDTH</command> tags for the icons in server generated webpages. The <command>IconsAreLinks</command> parameter combines the graphical icon with the HTML link anchor, which contains the URL link target.
       </para>
-      <formalpara id="s2-apache-loadmodule">
-        <title>LoadModule</title>
-        <indexterm>
-          <primary><command>LoadModule</command></primary>
-          <secondary>Apache configuration directive</secondary>
-        </indexterm>
-        <indexterm>
-          <primary>configuration directives, Apache</primary>
-          <secondary><command>LoadModule</command></secondary>
-        </indexterm>
-        <para>
-          <command>LoadModule</command> is used to load Dynamic Shared Object (DSO) modules. More information on the Apache HTTP Server's DSO support, including instructions for using the <command>LoadModule</command> directive, can be found in <xref linkend="s1-apache-addmods" />. Note, the load order of the modules is <emphasis>no longer important</emphasis> with Apache HTTP Server 2.0.  <!-- Refer to <xref linkend="s3-httpd-v2-mig-dso" /> for more information about Apache HTTP Server 2.0 DSO support. -->
-        </para>
-      </formalpara>
       <formalpara id="s2-apache-location">
         <title>Location</title>
         <indexterm>


More information about the docs-commits mailing list