Change default nameservers
[hcoop/domtool2.git] / lib / easy_domain.dtl
1 {{The most common kinds of domain configuration}}
2
3 val default_node : (node) = "mire";
4 val web_node : (web_node) = "mire";
5 val web_ip = ip_of_node (web_node_to_node web_node);
6
7 val webAt =
8 \ n : (web_node) ->
9 \ host : (host) ->
10 \\ config : Vhost -> begin
11 dns (dnsA (literal host) (ip_of_node (web_node_to_node n)));
12
13 vhost host where
14 WebPlaces = [web_place_default n]
15 with
16 config
17 end
18 end;
19
20 val web = webAt web_node;
21
22 val webAtIp =
23 \ ip : (your_ip) ->
24 \ host : (host) ->
25 \\ config : Vhost -> begin
26 dns (dnsA (literal host) (your_ip_to_ip ip));
27
28 vhost host where
29 WebPlaces = [web_place web_node ip]
30 with
31 config
32 end
33 end;
34
35 val addDefaultAlias = begin
36 mailbox <- Mailbox;
37 defaultAlias mailbox
38 end;
39
40 val addWww = begin
41 web "www" with
42 serverAliasDefault;
43 www : [Vhost] <- WWW;
44 www
45 end
46 end;
47
48 val dom =
49 \ d : (your_domain) ->
50 \\ config : Domain ->
51 domain d with
52 dns (dnsNS "ns1.hcoop.net");
53 dns (dnsNS "ns2.hcoop.net");
54
55 dns (dnsA default (ip_of_node (web_node_to_node web_node)));
56
57 hmail : bool <- HandleMail;
58 if hmail then
59 handleMail
60 else
61 Skip
62 end;
63
64 amx : bool <- AddMX;
65 if amx then
66 dns (dnsMX 1 "mail.hcoop.net")
67 else
68 Skip
69 end;
70
71 createWWW : bool <- CreateWWW;
72 if createWWW then
73 addWww
74 else
75 Skip
76 end;
77
78 defAl : bool <- DefaultAlias;
79 if defAl then
80 addDefaultAlias
81 else
82 Skip
83 end;
84
85 config
86 end;
87
88 val nameserver = \host -> dns (dnsNS host);
89 val dnsIP = \from -> \to -> dns (dnsA (literal from) to);
90 val dnsIPv6 = \from -> \to -> dns (dnsAAAA (literal from) to);
91 val dnsMail = \num -> \host -> dns (dnsMX num host);
92 val dnsAlias = \from -> \to -> dns (dnsCNAME (literal from) to);
93 val dnsDefault = \to -> dns (dnsA default to);
94 val dnsDefaultv6 = \to -> dns (dnsAAAA default to);
95 val dnsText = \from -> \to -> dns (dnsTXT (srv_literal from) to);
96 val dnsDefaultText = \to -> dns (dnsTXT srv_default to);
97
98 val dnsWildcardIP = \to -> dns (dnsA wildcard to);