Apache directory options
[hcoop/domtool2.git] / lib / apache_options.dtl
... / ...
CommitLineData
1{{Per-directory options for Apache}}
2
3extern type apache_option;
4{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#options">the
5 Apache documentation</a> for what the options mean.}}
6
7extern val execCGI : apache_option;
8extern val includesNOEXEC : apache_option;
9extern val indexes : apache_option;
10
11extern val options : [apache_option] -> [^Vhost];
12{{Declare exactly the set of options in effect for the current scope.}}
13
14extern val set_options : [apache_option] -> [^Vhost];
15extern val unset_options : [apache_option] -> [^Vhost];
16{{Specify some options to be set or unset, leaving the rest as they are.}}
17