X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/728f70338362f7c59b62dd3e0b66d6583808d877..2e87719caa8c0cc98c573a2071a3c9c7cd503632:/lib/easy_domain.dtl diff --git a/lib/easy_domain.dtl b/lib/easy_domain.dtl index 6025008..c4b3d4f 100644 --- a/lib/easy_domain.dtl +++ b/lib/easy_domain.dtl @@ -1,5 +1,6 @@ {{The most common kinds of domain configuration}} +val default_node : (node) = "mire"; val web_node : (web_node) = "mire"; val webAt = @@ -9,31 +10,80 @@ val webAt = (dns (dnsA host (ip_of_node (web_node_to_node n))); vhost host where - WebNodes = [n] + WebPlaces = [web_place_default n] with config end); val web = webAt web_node; -val dom = +val webAtIp = + \ ip : (your_ip) -> + \ host : (host) -> + \\ config : Vhost -> begin + dns (dnsA host (your_ip_to_ip ip)); + + vhost host where + WebPlaces = [web_place web_node ip] + with + config + end + end; + +val addDefaultAlias = begin + mailbox <- Mailbox; + defaultAlias mailbox +end; + +val addWww = begin + web "www" with + serverAliasDefault; + www : [Vhost] <- WWW; + www + end +end; + +val domNoWwwNoDefaultAlias = \ d : (your_domain) -> \\ config : Domain -> domain d with - dns (dnsNS "deleuze.hcoop.net"); - dns (dnsNS "mire.hcoop.net"); + dns (dnsNS "ns1.hcoop.net"); + dns (dnsNS "ns3.hcoop.net"); - handleMail; - mailbox <- Mailbox; - catchAllAlias mailbox; + dns (dnsDefaultA (ip_of_node (web_node_to_node web_node))); - web "www" with - end; + handleMail; + dns (dnsMX 1 "deleuze.hcoop.net"); config end; +val domNoDefaultAlias = + \ d : (your_domain) -> + \\ config : Domain -> + domNoWwwNoDefaultAlias d with + addWww; + config + end; + +val domNoWww = + \ d : (your_domain) -> + \\ config : Domain -> + domNoWwwNoDefaultAlias d with + config; + addDefaultAlias; + end; + +val dom = + \ d : (your_domain) -> + \\ config : Domain -> + domNoDefaultAlias d with + config; + addDefaultAlias; + end; + val nameserver = \host -> dns (dnsNS host); val dnsIP = \from -> \to -> dns (dnsA from to); val dnsMail = \num -> \host -> dns (dnsMX num host); val dnsAlias = \from -> \to -> dns (dnsCNAME from to); +val dnsDefault = \to -> dns (dnsDefaultA to);