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