Generate autodoc index with SML/NJ HTML lib
[hcoop/domtool2.git] / lib / apache_auth.dtl
1 {{Controlling who can access sections of a virtual host}}
2
3 extern type authType;
4 extern val basic : authType;
5 extern val digest : authType;
6 extern 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
10 extern 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
14 extern 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
18 extern val requireValidUser : [Location];
19 extern val requireUser : [user] -> [Location];
20 extern 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
24 extern val orderAllowDeny : [Location];
25 extern 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
29 extern val allowFromAll : [Location];
30 extern 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
34 extern val denyFromAll : [Location];
35 extern 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
39 extern val satisfyAll : [Location];
40 extern val satisfyAny : [Location];
41 {{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#satisfy">the
42 Apache documentation</a>.}}