Firewall Regen Support
[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 defa : bool <- DefaultA;
56 if defa then
57 dns (dnsA default (ip_of_node (web_node_to_node web_node)))
58 else
59 Skip
60 end;
61
62 hmail : bool <- HandleMail;
63 if hmail then
64 handleMail
65 else
66 Skip
67 end;
68
69 amx : bool <- AddMX;
70 if amx then
71 dns (dnsMX 1 "mail.hcoop.net")
72 else
73 Skip
74 end;
75
76 createWWW : bool <- CreateWWW;
77 if createWWW then
78 addWww
79 else
80 Skip
81 end;
82
83 defAl : bool <- DefaultAlias;
84 if defAl then
85 addDefaultAlias
86 else
87 Skip
88 end;
89
90 config
91 end;
92
93 val nameserver = \host -> dns (dnsNS host);
94 val dnsIP = \from -> \to -> dns (dnsA (literal from) to);
95 val dnsIPv6 = \from -> \to -> dns (dnsAAAA (literal from) to);
96 val dnsMail = \num -> \host -> dns (dnsMX num host);
97 val dnsAlias = \from -> \to -> dns (dnsCNAME (literal from) to);
98 val dnsDefault = \to -> dns (dnsA default to);
99 val dnsDefaultv6 = \to -> dns (dnsAAAA default to);
100 val dnsText = \from -> \to -> dns (dnsTXT (srv_literal from) to);
101 val dnsDefaultText = \to -> dns (dnsTXT srv_default to);
102
103 val dnsWildcardIP = \to -> dns (dnsA wildcard to);