Domain alias support for Exim
[hcoop/domtool2.git] / lib / apache_auth.dtl
CommitLineData
2aeb9eec
AC
1{{Controlling who can access sections of a virtual host}}
2
3extern type authType;
4extern val basic : authType;
5extern val digest : authType;
6extern val authType : authType -> [Location];
7{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#authtype">the
8 Apache documentation</a>.}}
9
10extern val authName : no_newlines -> [Location];
11{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#authname">the
12 Apache documentation</a>.}}
13
14extern val authUserFile : your_path -> [Location];
15{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#authuserfile">the
16 Apache documentation</a>.}}
17
18extern val requireValidUser : [Location];
19extern val requireUser : [user] -> [Location];
20extern val requireGroup : [group] -> [Location];
21{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#require">the
22 Apache documentation</a>.}}
23
24extern val orderAllowDeny : [Location];
25extern val orderDenyAllow : [Location];
26{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#order">the
27 Apache documentation</a>.}}
28
29extern val allowFromAll : [Location];
30extern val allowFrom : [no_spaces] -> [Location];
31{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#allow">the
32 Apache documentation</a>.}}
33
34extern val denyFromAll : [Location];
35extern val denyFrom : [no_spaces] -> [Location];
36{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#deny">the
37 Apache documentation</a>.}}
38
39extern val satisfyAll : [Location];
40extern val satisfyAny : [Location];
41{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#satisfy">the
42 Apache documentation</a>.}}