summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_info.xml
blob: c086a891f0b926772e9ca10a686db75fc7be8e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?>
<modulesynopsis>

<name>mod_info</name>
<status>Extension</status>
<description>This module provides a comprehensive overview of the server
configuration including all installed modules and directives in the
configuration files.</description>
<identifier>info_module</identifier>
<sourcefile>mod_info.c</sourcefile>
<compatibility>Available in Apache 1.1 and later</compatibility>


<summary>

    <h2>Using mod_info</h2>

    <p>To configure it, add the following to your
    <code>httpd.conf</code> file.</p>

<example>
&lt;Location /server-info&gt;<br />
SetHandler server-info<br />
&lt;/Location&gt;<br />
</example>

    You may wish to add a 
    <directive module="core">&lt;Limit&gt;</directive> 
    clause inside the 
    <directive module="core">&lt;location&gt;</directive>
    directive to limit access to your server configuration 
    information. 

    <p>Once configured, the server information is obtained by
    accessing <code>http://your.host.dom/server-info</code></p>

    <note>
      Note that the configuration files are read by the
      module at run-time, and therefore the display may
      <em>not</em> reflect the running server's active
      configuration if the files have been changed since the server
      was last reloaded. Also, the configuration files must be
      readable by the user as which the server is running (see the
      <directive module="mpm_common">User</directive> directive), or
      else the directive settings will not be listed.

      <p>It should also be noted that if
      <module>mod_info</module> is compiled into the server, its
      handler capability is available in <em>all</em> configuration
      files, including <em>per</em>-directory files (<em>e.g.</em>,
      <code>.htaccess</code>). This may have security-related
      ramifications for your site.</p>
    </note>
</summary>

<directivesynopsis>
<name>AddModuleInfo</name>
<description>Allows additional information to be added to the module
information displayed by the server-info handler</description>
<syntax>AddModuleInfo <em>module-name string</em></syntax>
<default><em>none</em></default>
<contextlist><context>server config</context> <context>virtual
host</context></contextlist>
<compatibility>Apache 1.3 and above</compatibility>

<usage>
    <p>This allows the content of <em>string</em> to be shown as
    HTML interpreted, <strong>Additional Information</strong> for
    the module <em>module-name</em>. Example:</p>

<example>
AddModuleInfo mod_auth.c 'See &lt;A HREF="http://www.apache.org/docs/mod/mod_auth.html"&gt;http://www.apache.org/docs/mod/mod_auth.html&lt;/A&gt;'
</example>
</usage>

</directivesynopsis>
</modulesynopsis>