]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_authz_dbm.html.en
update transformation: part I
[apache] / docs / manual / mod / mod_authz_dbm.html.en
1 <?xml version="1.0" encoding="ISO-8859-1"?>
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="en" xml:lang="en"><head><!--
4         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
5               This file is generated from xml source: DO NOT EDIT
6         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
7       -->
8 <title>mod_authz_dbm - Apache HTTP Server</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" />
12 <link href="../images/favicon.ico" rel="shortcut icon" /></head>
13 <body>
14 <div id="page-header">
15 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
16 <p class="apache">Apache HTTP Server Version 2.1</p>
17 <img alt="" src="../images/feather.gif" /></div>
18 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
19 <div id="path">
20 <a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs-project/">Documentation</a> &gt; <a href="../">Version 2.1</a> &gt; <a href="./">Modules</a></div>
21 <div id="page-content">
22 <div id="preamble"><h1>Apache Module mod_authz_dbm</h1>
23 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Group authorization using DBM files</td></tr>
24 <tr><th><a href="module-dict.html#Status">Status:</a></th><td>Extension</td></tr>
25 <tr><th><a href="module-dict.html#ModuleIdentifier">Module Identifier:</a></th><td>authz_dbm_module</td></tr>
26 <tr><th><a href="module-dict.html#SourceFile">Source File:</a></th><td>mod_authz_dbm.c</td></tr>
27 <tr><th><a href="module-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.1 and later</td></tr></table>
28 <h3>Summary</h3>
29
30     <p>This module provides authorization capabilities so that
31        authenticated users can be allowed or denied access to portions
32        of the web site by group membership. Similar functionality is
33        provided by <code class="module"><a href="../mod/mod_authz_groupfile.html">mod_authz_groupfile</a></code>.</p>
34 </div>
35 <div id="quickview"><h3 class="directives">Directives</h3>
36 <ul id="toc">
37 <li><img alt="" src="../images/down.gif" /> <a href="#authdbmgroupfile">AuthDBMGroupFile</a></li>
38 <li><img alt="" src="../images/down.gif" /> <a href="#authzdbmauthoritative">AuthzDBMAuthoritative</a></li>
39 <li><img alt="" src="../images/down.gif" /> <a href="#authzdbmtype">AuthzDBMType</a></li>
40 </ul>
41 <h3>See also</h3>
42 <ul class="seealso">
43 <li><code class="directive"><a href="../mod/core.html#require">Require</a></code></li>
44 <li><code class="directive"><a href="../mod/core.html#satisfy">Satisfy</a></code></li>
45 </ul></div>
46
47 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
48 <div class="directive-section"><h2><a name="AuthDBMGroupFile" id="AuthDBMGroupFile">AuthDBMGroupFile</a> <a name="authdbmgroupfile" id="authdbmgroupfile">Directive</a></h2>
49 <table class="directive">
50 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets the name of the database file containing the list
51 of user groups for authentication</td></tr>
52 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthDBMGroupFile <var>file-path</var></code></td></tr>
53 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
54 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
55 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
56 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authz_dbm</td></tr>
57 </table>
58     <p>The <code class="directive">AuthDBMGroupFile</code> directive sets the
59     name of a DBM file containing the list of user groups for user
60     authentication.  <var>File-path</var> is the absolute path to the
61     group file.</p>
62
63     <p>The group file is keyed on the username. The value for a
64     user is a comma-separated list of the groups to which the users
65     belongs. There must be no whitespace within the value, and it
66     must never contain any colons.</p>
67
68     <div class="warning"><h3>Security</h3>
69       <p>Make sure that the <code class="directive">AuthDBMGroupFile</code> is
70       stored outside the document tree of the web-server. Do
71       <strong>not</strong> put it in the directory that it protects.
72       Otherwise, clients will be able to download the
73       <code class="directive">AuthDBMGroupFile</code> unless otherwise
74       protected.</p>
75     </div>
76
77     <p>Combining Group and Password DBM files: In some cases it is
78     easier to manage a single database which contains both the
79     password and group details for each user. This simplifies any
80     support programs that need to be written: they now only have to
81     deal with writing to and locking a single DBM file. This can be
82     accomplished by first setting the group and password files to
83     point to the same DBM:</p>
84
85     <div class="example"><p><code>
86       AuthDBMGroupFile /www/userbase<br />
87       AuthDBMUserFile /www/userbase
88     </code></p></div>
89
90     <p>The key for the single DBM is the username. The value consists
91     of</p>
92
93     <div class="example"><p><code>
94       Encrypted Password : List of Groups [ : (ignored) ]
95     </code></p></div>
96
97     <p>The password section contains the encrypted
98     password as before. This is followed by a colon and the comma
99     separated list of groups. Other data may optionally be left in the
100     DBM file after another colon; it is ignored by the authentication
101     module. This is what www.telescope.org uses for its combined
102     password and group database.</p>
103
104 </div>
105 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
106 <div class="directive-section"><h2><a name="AuthzDBMAuthoritative" id="AuthzDBMAuthoritative">AuthzDBMAuthoritative</a> <a name="authzdbmauthoritative" id="authzdbmauthoritative">Directive</a></h2>
107 <table class="directive">
108 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets whether authorization will be passed on to lower level
109 modules</td></tr>
110 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthzDBMAuthoritative On|Off</code></td></tr>
111 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>AuthzDBMAuthoritative On</code></td></tr>
112 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
113 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
114 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
115 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authz_dbm</td></tr>
116 </table>
117     <p>Setting the <code class="directive">AuthzDBMAuthoritative</code>
118     directive explicitly to <code>Off</code> allows group authorization
119     to be passed on to lower level modules (as defined in the
120     <code>modules.c</code> file) if there is no group found
121     for the the supplied userID. If there are any groups
122     specified, the usual checks will be applied and a failure will
123     give an Authentication Required reply.</p>
124
125     <p>So if a userID appears in the database of more than one module;
126     or if a valid <code class="directive"><a href="../mod/core.html#require">Require</a></code>
127     directive applies to more than one module; then the first module
128     will verify the credentials; and no access is passed on;
129     regardless of the <code class="directive">AuthAuthoritative</code> setting.</p>
130
131     <p>A common use for this is in conjunction with one of the
132     auth providers; such as <code class="module"><a href="../mod/mod_authn_dbm.html">mod_authn_dbm</a></code> or
133     <code class="module"><a href="../mod/mod_authn_file.html">mod_authn_file</a></code>. Whereas this DBM module supplies
134     the bulk of the user credential checking; a few (administrator) related
135     accesses fall through to a lower level with a well protected
136     <code>.htpasswd</code> file.</p>
137
138     <p>By default, control is not passed on and an unknown group
139     will result in an Authentication Required reply. Not
140     setting it thus keeps the system secure and forces an NCSA
141     compliant behaviour.</p>
142
143     <div class="warning"><h3>Security</h3>
144       <p>Do consider the implications of allowing a user to
145       allow fall-through in his .htaccess file; and verify that this
146       is really what you want; Generally it is easier to just secure
147       a single <code>.htpasswd</code> file, than it is to secure a
148       database which might have more access interfaces.</p>
149     </div>
150
151 </div>
152 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
153 <div class="directive-section"><h2><a name="AuthzDBMType" id="AuthzDBMType">AuthzDBMType</a> <a name="authzdbmtype" id="authzdbmtype">Directive</a></h2>
154 <table class="directive">
155 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets the type of database file that is used to
156 store passwords</td></tr>
157 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthzDBMType default|SDBM|GDBM|NDBM|DB</code></td></tr>
158 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>AuthzDBMType default</code></td></tr>
159 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
160 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
161 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
162 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authz_dbm</td></tr>
163 </table>
164     <p>Sets the type of database file that is used to store the passwords.
165     The default database type is determined at compile time.  The
166     availability of other types of database files also depends on
167     <a href="../install.html#dbm">compile-time settings</a>.</p>
168
169     <p>It is crucial that whatever program you use to create your password
170     files is configured to use the same type of database.</p>
171
172 </div>
173 </div>
174 <div id="footer">
175 <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
176 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
177 </body></html>