Update Easy_Domain to support trivial configuration of default node
[hcoop/domtool2.git] / lib / hcoop.dtl
... / ...
CommitLineData
1{{HCoop-specific stuff}}
2
3extern type homedir_path;
4{{Some relative subdirectory of your home directory}}
5
6extern val home : homedir_path -> your_path;
7{{Shortcut to denote a subdirectory of your home directory}}
8
9extern val homeS : no_spaces -> no_spaces;
10{{Use this version when it doesn't matter if the output is a real filesystem
11 path.}}
12
13val mailmanHcoop = mailmanWebHost "lists.hcoop.net";
14{{Configure your domain to have its Mailman mailing lists served on the web at
15 lists.hcoop.net.}}
16
17val fritz_ip : (ip) = "69.90.123.75";
18val hopper_ip : (ip) = "69.90.123.74";
19val deleuze_ip : (ip) = "69.90.123.67";
20val mire_ip : (ip) = "69.90.123.68";
21val navajos_ip : (ip) = "69.90.123.70";
22val outpost_ip : (ip) = "74.115.254.28";
23
24(* val fyodor_ip : (ip) = "64.20.38.170"; *)
25
26val simpleWeb = \host -> \docroot -> web host where
27 DocumentRoot = home docroot
28with end;