]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_ident.xml
a few new translations and up-to-date patches
[apache] / docs / manual / mod / mod_ident.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
4 <!-- $Revision: 1.5 $ -->
5
6 <!--
7  Copyright 2003-2004 The Apache Software Foundation
8
9  Licensed under the Apache License, Version 2.0 (the "License");
10  you may not use this file except in compliance with the License.
11  You may obtain a copy of the License at
12
13      http://www.apache.org/licenses/LICENSE-2.0
14
15  Unless required by applicable law or agreed to in writing, software
16  distributed under the License is distributed on an "AS IS" BASIS,
17  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  See the License for the specific language governing permissions and
19  limitations under the License.
20 -->
21
22 <modulesynopsis metafile="mod_ident.xml.meta">
23
24 <name>mod_ident</name>
25 <description>RFC 1413 ident lookups</description>
26 <status>Extension</status>
27 <sourcefile>mod_ident.c</sourcefile>
28 <identifier>ident_module</identifier>
29 <compatibility>Available in Apache 2.1 and later</compatibility>
30
31 <summary>
32     <p>This module queries an <a href="http://www.ietf.org/rfc/rfc1413.txt"
33     >RFC 1413</a> compatible daemon on a remote host to look up the owner of
34     a connection.</p>
35 </summary>
36 <seealso><module>mod_log_config</module></seealso>
37
38 <directivesynopsis>
39 <name>IdentityCheck</name>
40 <description>Enables logging of the RFC 1413 identity of the remote
41 user</description>
42 <syntax>IdentityCheck On|Off</syntax>
43 <default>IdentityCheck Off</default>
44 <contextlist><context>server config</context><context>virtual host</context>
45 <context>directory</context></contextlist>
46 <compatibility>Moved out of core in Apache 2.1</compatibility>
47
48 <usage>
49     <p>This directive enables <a href="http://www.ietf.org/rfc/rfc1413.txt"
50     >RFC 1413</a>-compliant logging of the remote user name for each
51     connection, where the client machine runs identd or something similar.
52     This information is logged in the access log using the <code>%...l</code>
53     <a href="mod_log_config.html#formats">format string</a>.</p>
54
55     <note>
56       The information should not be trusted in any way except for
57       rudimentary usage tracking.
58     </note>
59
60     <p>Note that this can cause serious latency problems accessing
61     your server since every request requires one of these lookups
62     to be performed. When firewalls or proxy servers are involved,
63     each lookup might possibly fail and add a latency duration as
64     defined by the <directive module="mod_ident"
65     >IdentityCheckTimeout</directive> directive to each hit. So in
66     general this is not very useful on public servers accessible from
67     the Internet.</p>
68 </usage>
69 </directivesynopsis>
70
71 <directivesynopsis>
72 <name>IdentityCheckTimeout</name>
73 <description>Determines the timeout duration for ident requests</description>
74 <syntax>IdentityCheckTimeout <var>seconds</var></syntax>
75 <default>IdentityCheckTimeout 30</default>
76 <contextlist><context>server config</context><context>virtual host</context>
77 <context>directory</context></contextlist>
78 <usage>
79     <p>This directive specifies the timeout duration of an ident
80     request. The default value of 30 seconds is recommended by <a
81     href="http://www.ietf.org/rfc/rfc1413.txt">RFC 1413</a>, mainly because
82     of possible network latency. However, you may want to adjust the
83     timeout value according to your local network speed.</p>
84 </usage>
85 </directivesynopsis>
86
87 </modulesynopsis>
88