Initial domtool-config tool
[hcoop/domtool2.git] / lib / apache_options.dtl
CommitLineData
d441e69f
AC
1{{Per-directory options for Apache}}
2
3extern type apache_option;
5f033db2 4{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#options">the
d441e69f
AC
5 Apache documentation</a> for what the options mean.}}
6
7extern val execCGI : apache_option;
22eaa950 8extern val followSymLinks : apache_option;
d441e69f
AC
9extern val includesNOEXEC : apache_option;
10extern val indexes : apache_option;
c6923cdb 11extern val multiViews : apache_option;
d441e69f
AC
12
13extern val options : [apache_option] -> [^Vhost];
14{{Declare exactly the set of options in effect for the current scope.}}
15
16extern val set_options : [apache_option] -> [^Vhost];
17extern val unset_options : [apache_option] -> [^Vhost];
18{{Specify some options to be set or unset, leaving the rest as they are.}}
19
edd38024
AC
20extern val directoryIndex : [no_spaces] -> [^Vhost];
21{{Give the list of filenames to try for the default page of a directory, to be
22 considered in the order given.}}
7f012ffd
AC
23
24extern val forceType : no_spaces -> [Location];
25extern val forceTypeOff : [Location];
26{{Force all files in the current directory to be served with the given MIME
27 type.}}
28
29extern val action : no_spaces -> location -> [^Vhost];
5f033db2 30{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_actions.html#action">the
7f012ffd
AC
31 Apache documentation</a>.}}
32
33extern val addDefaultCharset : no_spaces -> [^Vhost];
5f033db2 34{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#adddefaultcharset">the
7f012ffd 35 Apache documentation</a>.}}
781ebc11
AC
36
37extern type file_extension;
38extern val cgiExtension : file_extension -> [^Vhost];
39{{Ask for all files ending in a particular extension to be executed as CGI.}}