1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja"><head><!--
4        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
5              This file is generated from xml source: DO NOT EDIT
6        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
7      -->
8<title>mod_info - Apache HTTP サーバ</title>
9<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
10<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
11<link href="/style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="/style/css/prettify.css" />
12<script src="/style/scripts/prettify.min.js" type="text/javascript">
13</script>
14
15<link href="/images/favicon.ico" rel="shortcut icon" /></head>
16<body>
17<div id="page-header">
18<p class="menu"><a href="/mod/">モジュール</a> | <a href="/mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">用語</a> | <a href="/sitemap.html">サイトマップ</a></p>
19<p class="apache">Apache HTTP サーバ バージョン 2.4</p>
20<img alt="" src="/images/feather.gif" /></div>
21<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="/images/left.gif" /></a></div>
22<div id="path">
23<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP サーバ</a> &gt; <a href="http://httpd.apache.org/docs/">ドキュメンテーション</a> &gt; <a href="../">バージョン 2.4</a> &gt; <a href="./">モジュール</a></div>
24<div id="page-content">
25<div id="preamble"><h1>Apache モジュール mod_info</h1>
26<div class="toplang">
27<p><span>翻訳済み言語: </span><a href="/en/mod/mod_info.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
28<a href="/fr/mod/mod_info.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
29<a href="/ja/mod/mod_info.html" title="Japanese">&nbsp;ja&nbsp;</a> |
30<a href="/ko/mod/mod_info.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
31</div>
32<div class="outofdate">この日本語訳はすでに古くなっている
33            可能性があります。
34            最近更新された内容を見るには英語版をご覧下さい。
35        </div>
36<table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>サーバの設定の包括的な概観を提供する</td></tr>
37<tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
38<tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>info_module</td></tr>
39<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_info.c</td></tr></table>
40<h3>概要</h3>
41
42    <p><code class="module"><a href="/mod/mod_info.html">mod_info</a></code> を設定するには、以下を <code>httpd.conf</code>
43    ファイルに加えます。</p>
44
45    <div class="example"><p><code>
46      &lt;Location /server-info&gt;<br />
47      <span class="indent">
48        SetHandler server-info<br />
49      </span>
50      &lt;/Location&gt;
51    </code></p></div>
52
53    <p><code class="directive"><a href="/mod/core.html#location">&lt;Location&gt;</a></code>
54    の中で <code class="module"><a href="/mod/mod_access.html">mod_access</a></code> を使って、サーバ設定情報への
55    アクセスを制限したいと思うかもしれません :</p>
56
57    <div class="example"><p><code>
58      &lt;Location /server-info&gt;<br />
59      <span class="indent">
60        SetHandler server-info<br />
61        Order deny,allow<br />
62        Deny from all<br />
63        Allow from yourcompany.com<br />
64      </span>
65      &lt;/Location&gt;
66    </code></p></div>
67
68    <p>一旦設定すると、<code>http://your.host.example.com/server-info</code>
69    にアクセスすることでサーバの情報を得られるようになります。</p>
70</div>
71<div id="quickview"><h3 class="directives">ディレクティブ</h3>
72<ul id="toc">
73<li><img alt="" src="/images/down.gif" /> <a href="#addmoduleinfo">AddModuleInfo</a></li>
74</ul>
75<h3>トピック</h3>
76<ul id="topics">
77<li><img alt="" src="/images/down.gif" /> <a href="#security">Security Issues</a></li>
78<li><img alt="" src="/images/down.gif" /> <a href="#queries">表示される情報の選択</a></li>
79<li><img alt="" src="/images/down.gif" /> <a href="#limitations">既知の制限</a></li>
80</ul><ul class="seealso"><li><a href="#comments_section">コメント</a></li></ul></div>
81<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
82<div class="section">
83<h2><a name="security" id="security">Security Issues</a></h2>
84    <p>一旦 <code class="module"><a href="/mod/mod_info.html">mod_info</a></code> がサーバに読み込まれると、
85    提供しているハンドラ機能はディレクトリ毎の設定ファイル (<em>例えば</em>
86    .htaccess) を含む <em>すべて</em>の設定ファイルで有効になります。
87    このモジュールを有効にするときはセキュリティの問題を考慮する必要が
88    あるでしょう。</p>
89
90    <p>特に、このモジュールはシステムパス、ユーザ名/パスワード、
91    データベース名など、他の Apache モジュールの設定ディレクティブから
92    セキュリティ上微妙な情報を漏らす可能性があります。
93    ですから、このモジュールはきちんとアクセス制御された環境で<strong>のみ</strong>、
94    注意して使ってください。</p>
95
96    <p>設定情報へのアクセスを制限するために、<code class="module"><a href="/mod/mod_authz_host.html">mod_authz_host</a></code> を
97    使うのが良いでしょう。</p>
98      
99    <div class="example"><h3>アクセス制御</h3><p><code>
100      &lt;Location /server-info&gt;<br />
101      <span class="indent">
102        SetHandler server-info<br />
103        Order allow,deny<br />
104        # Allow access from server itself<br />
105        Allow from 127.0.0.1<br />
106        # Additionally, allow access from local workstation<br />
107        Allow from 192.168.1.17<br />
108      </span>
109      &lt;/Location&gt;
110    </code></p></div>
111</div><div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
112<div class="section">
113<h2><a name="queries" id="queries">表示される情報の選択</a></h2>
114    <p>デフォルトでは、サーバ情報はすべての有効なモジュールと、
115    各モジュールについて、モジュールが理解するディレクティブ、
116    実装している、フック、現時点での設定の関連するディレクティブに
117    なっています。</p>
118
119    <p><code>server-info</code> リクエストへクエリーを追加することで、
120    設定情報の他の表示形式を選ぶことができます。例えば、
121    <code>http://your.host.example.com/server-info?config</code> は
122    すべての設定ディレクティブを表示します。</p>
123    
124    <dl>
125        <dt><code>?&lt;module-name&gt;</code></dt>
126            <dd>指定されたモジュールに関連する情報のみ</dd>
127        <dt><code>?config</code></dt>
128            <dd>モジュールでソートせずに、設定ディレクティブのみ</dd>
129        <dt><code>?hooks</code></dt>
130            <dd>各モジュールが使用するフックのみ</dd>
131        <dt><code>?list</code></dt>
132            <dd>有効なモジュールの簡単なリストのみ</dd>
133        <dt><code>?server</code></dt>
134            <dd>基本サーバ情報のみ</dd>
135    </dl>
136</div><div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
137<div class="section">
138<h2><a name="limitations" id="limitations">既知の制限</a></h2>
139    <p><code class="module"><a href="/mod/mod_info.html">mod_info</a></code> は、元の設定ファイルを読むのではなく、
140    既にパースされた設定を読み込むことで情報を提供します。従って、
141    パース済みの設定情報の木が生成される方法による制限がいくつかあります:</p>
142    <ul>
143      <li>パースされた設定に保存されずに、すぐに実行されるディレクティブは
144          一覧に現れません。これには
145          <code class="directive"><a href="/mod/core.html#serverroot">ServerRoot</a></code>,
146          <code class="directive"><a href="/mod/mod_so.html#loadmodule">LoadModule</a></code>,
147          <code class="directive"><a href="/mod/mod_so.html#loadfile">LoadFile</a></code> があります。</li>
148      <li><code class="directive"><a href="/mod/core.html#include">Include</a></code>,
149          <code class="directive"><a href="/mod/core.html#&lt;ifmodule&gt;">&lt;IfModule&gt;</a></code>,
150          <code class="directive"><a href="/mod/core.html#&lt;ifdefine&gt;">&lt;IfDefine&gt;</a></code>,
151          のような設定ファイル自身を制御するディレクティブは表示されません。
152          そのディレクティブの中にあり、有効になっているディレクティブは
153          表示されます。</li>
154      <li>コメントは表示されません。(これは仕様だと思ってください。)</li>
155      <li><code>.htaccess</code> ファイルの設定ディレクティブは表示されません
156          (永久的なサーバ設定の一部ではないからです)。</li>
157      <li><code class="directive"><a href="/mod/core.html#&lt;directory&gt;">&lt;Directory&gt;</a></code>
158          のようなコンテナディレクティブは普通に表示されますが、
159          <code class="module"><a href="/mod/mod_info.html">mod_info</a></code> は閉じタグの <code class="directive"><a href="/mod/core.html#&lt;/directory&gt;">&lt;/Directory&gt;</a></code> などの数を知ることはできません。</li>
160      <li><code class="module"><a href="/mod/mod_perl.html">mod_perl</a></code> のようなサードパーティモジュール
161           のディレクティブは表示されないかもしれません。</li>
162    </ul>
163</div>
164<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
165<div class="directive-section"><h2><a name="AddModuleInfo" id="AddModuleInfo">AddModuleInfo</a> <a name="addmoduleinfo" id="addmoduleinfo">ディレクティブ</a></h2>
166<table class="directive">
167<tr><th><a href="directive-dict.html#Description">説明:</a></th><td>server-info ハンドラにより表示されるモジュールの情報に
168追加の情報を付け加える</td></tr>
169<tr><th><a href="directive-dict.html#Syntax">構文:</a></th><td><code>AddModuleInfo <var>module-name</var> <var>string</var></code></td></tr>
170<tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
171<tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
172<tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_info</td></tr>
173<tr><th><a href="directive-dict.html#Compatibility">互換性:</a></th><td>Apache 1.3 以降</td></tr>
174</table>
175    <p>これは、<var>string</var> の内容がモジュール <var>module-name</var>
176    の<strong>追加情報</strong> として HTML
177    として解釈され、表示されるようにします。例:</p>
178
179    <div class="example"><p><code>
180      AddModuleInfo mod_deflate.c 'See &lt;a \<br />
181      <span class="indent">
182        href="http://www.apache.org/docs/2.4/mod/mod_deflate.html"&gt;\<br />
183        http://www.apache.org/docs/2.4/mod/mod_deflate.html</a>;'
184      </span>
185    </code></p></div>
186
187</div>
188</div>
189<div class="bottomlang">
190<p><span>翻訳済み言語: </span><a href="/en/mod/mod_info.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
191<a href="/fr/mod/mod_info.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
192<a href="/ja/mod/mod_info.html" title="Japanese">&nbsp;ja&nbsp;</a> |
193<a href="/ko/mod/mod_info.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
194</div><div class="top"><a href="#page-header"><img src="/images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">コメント</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&amp;A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div>
195<script type="text/javascript"><!--//--><![CDATA[//><!--
196var comments_shortname = 'httpd';
197var comments_identifier = 'http://httpd.apache.org/docs/2.4/mod/mod_info.html';
198(function(w, d) {
199    if (w.location.hostname.toLowerCase() == "httpd.apache.org") {
200        d.write('<div id="comments_thread"><\/div>');
201        var s = d.createElement('script');
202        s.type = 'text/javascript';
203        s.async = true;
204        s.src = 'https://comments.apache.org/show_comments.lua?site=' + comments_shortname + '&page=' + comments_identifier;
205        (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
206    }
207    else { 
208        d.write('<div id="comments_thread">Comments are disabled for this page at the moment.<\/div>');
209    }
210})(window, document);
211//--><!]]></script></div><div id="footer">
212<p class="apache">Copyright 2014 The Apache Software Foundation.<br />この文書は <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> のライセンスで提供されています。.</p>
213<p class="menu"><a href="/mod/">モジュール</a> | <a href="/mod/directives.html">ディレクティブ</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">用語</a> | <a href="/sitemap.html">サイトマップ</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
214if (typeof(prettyPrint) !== 'undefined') {
215    prettyPrint();
216}
217//--><!]]></script>
218</body></html>