Start of Apache
[hcoop/domtool2.git] / lib / domain.dtl
1 {{Configuring shared daemons with respect to a particular Internet domain name}}
2
3 extern type ip;
4 {{An IP address}}
5
6 extern type host;
7 {{A hostname; that is, (more or less) an alphanumeric string}}
8
9 extern type domain;
10 {{An Internet domain name}}
11
12 extern type your_domain;
13 {{A domain that you're allowed to configure}}
14
15 extern type node;
16 {{The name of a server controlled by domtool}}
17
18 extern type your_user;
19 extern type your_group;
20 {{UNIX users and groups that you're allowed to run as}}
21
22 extern type your_path;
23 {{A filesystem path that you're allowed to use.
24 The set of permitted values is generated from a set of roots by closing it
25 under the subdirectory relation.}}
26
27 context Domain;
28 {{Configuration directives specific to an Internet domain}}
29
30 extern type serial;
31 {{Domain zone serial numbers}}
32 extern val serialAuto : serial;
33 {{Whenever DNS data changes, choose a sensible serial number automatically.}
34 extern val serialConst : int -> serial;
35 {{Use this particular serial number.}}
36
37 extern type soa;
38 {{DNS start-of-authority record}}
39 extern val soa : domain -> serial -> int -> int -> int -> int -> soa;
40
41 extern type master;
42 {{Information on the master DNS server for a domain}}
43 extern val externalMaster : ip -> master;
44 {{A server not controlled by domtool will serve as master.}}
45 extern val internalMaster : node -> master;
46 {{A server controlled by domtool will serve as master.}}
47
48 extern type dnsKind;
49 {{How should DNS for this domain be handled?}}
50 extern val useDns : soa -> master -> [node] -> dnsKind;
51 {{We do want DNS services for this domain. Specify the SOA record, information
52 on the server in charge of zone data, and a list of slave servers.}}
53 extern val noDns : dnsKind;
54 {{No DNS services for this domain.}}
55
56 extern val domain : your_domain -> Domain => [Root] {DNS : dnsKind, TTL : int};
57 {{Configure a domain to which you have access rights.}}