apache: fastcgi config core, implement php5-cgi fastcgi
[hcoop/domtool2.git] / lib / apache.dtl
CommitLineData
8a7c40fa
AC
1{{Apache web server configuration}}
2
60695e99
AC
3extern type web_node;
4{{Nodes that accept Apache configuration from you}}
5
6extern val web_node_to_node : web_node -> node;
7
128e7b0b
AC
8extern type web_place;
9extern val web_place_default : web_node -> web_place;
10extern val web_place : web_node -> your_ip -> web_place;
11extern val web_place_to_web_node : web_place -> web_node;
12extern val web_place_to_node : web_place -> node;
13extern val web_place_to_ip : web_place -> ip;
14{{Web places are combinations of web nodes (servers on which you are allowed to
15 run web sites) and IP addresses on which those servers should listen for
16 requests.}}
17
8a7c40fa
AC
18context Vhost;
19{{A WWW virtual host}}
20
00a13ad8 21extern type suexec_flag;
00a13ad8 22{{Whether or not to use Suexec with a vhost.
434a7b1f
AC
23For users with the 'www' privilege, this type is identical to [bool].
24For others, it has only one value, [true].}}
25
26extern type ssl_cert_path;
27{{Filesystem path to an SSL certificate in your 'cert' list}}
28
ef5ad69a
CE
29extern type ssl_cacert_path;
30{{Filesystem path to an intermediate CA certificate in your 'cacert' list}}
31
434a7b1f
AC
32extern type ssl;
33extern val no_ssl : ssl;
34extern val use_cert : ssl_cert_path -> ssl;
00a13ad8 35
e7482df3 36extern type php_version;
e7482df3 37extern val php5 : php_version;
42782c79 38extern val fast_php : php_version;
e7482df3 39
8a7c40fa 40extern val vhost : host -> Vhost => [Domain]
ae272cb5
AC
41 {WebPlaces : [web_place],
42 SSL : ssl,
43 User : your_user,
44 Group : your_group,
45 DocumentRoot : your_path,
46 ServerAdmin : email,
e7482df3
AC
47 SuExec : suexec_flag,
48 PhpVersion : php_version};
f8dfbbcc
AC
49{{Add a new named Apache virtual host, specifying which nodes' Apache servers
50 should answer requests for this host, whether it should use SSL, what UNIX
51 user and group dynamic content generators should be run as, the filesystem
52 path to the static content root, and the e-mail address to which error pages
53 should direct visitors.}}
2882ee37 54
57e066bb
AC
55extern val vhostDefault : Vhost => [Domain]
56 {WebPlaces : [web_place],
57 SSL : ssl,
58 User : your_user,
59 Group : your_group,
60 DocumentRoot : your_path,
61 ServerAdmin : email,
e7482df3
AC
62 SuExec : suexec_flag,
63 PhpVersion : php_version};
57e066bb
AC
64{{Like <tt>vhost</tt>, but for, e.g., <tt>yourdomain.com</tt> instead of
65 <tt>www.yourdomain.com</tt>}}
66
2882ee37
AC
67context Location;
68
69extern type location;
70{{A valid URI prefix}}
71
36578c0c 72extern val location : location -> ^Vhost & Location => [Vhost & !Location];
2882ee37
AC
73extern val directory : your_path -> ^Vhost & Location => [Vhost & !Location];
74{{Set some configuration specific to a URI prefix or filesystem directory,
75 respectively.}}
edd38024 76
767fe695
AC
77extern type regexp;
78{{PCRE regular expression}}
79
80extern val filesMatch : regexp -> ^Vhost & Location => [Vhost & !Location];
81{{Mark nested configuration to only apply to filenames matching the regexp.}}
82
5210d78d 83extern val serverAliasHost : your_domain_host -> [Vhost];
edd38024 84{{Give an alternate hostname for this vhost.}}
5210d78d 85extern val serverAlias : host -> [Vhost];
e519d696
AC
86{{Like serverAliasHost, but adds an alias for the given hostname at every domain
87 being configured.}}
5210d78d 88extern val serverAliasDefault : [Vhost];
e519d696
AC
89{{Like serverAliasDefault, but adds aliases for the domains being configured
90 instead of any of their hosts/"subdomains".}}
ecc307a0
AC
91
92extern val testNoHtaccess : [Location];
ef5ad69a
CE
93
94extern val sslCertificateChainFile : ssl_cacert_path -> [Vhost];
95{{Intermediate file to serve as part of the chain of authority for
96 your ssl certificate}}