]> git.openstreetmap.org Git - dns.git/blob - src/openstreetmap-za.js
Move aerial.openstreetmap.org.za to ironbelly
[dns.git] / src / openstreetmap-za.js
1 D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
2
3   // Publish CAA records indicating that only letsencrypt should issue certificates
4
5   CAA_BUILDER({
6     label: "@",
7     iodef: "mailto:hostmaster@openstreetmap.org",
8     issue: [
9       "letsencrypt.org",
10     ],
11     issuewild: [
12       "letsencrypt.org",
13     ],
14   }),
15
16   // Let the main domain handle the email
17
18   MX("@", 10, "a.mx.openstreetmap.org."),
19
20   // Delegate SPF policy to the main domain
21
22   SPF_BUILDER({
23     label: "@",
24     parts: [
25       "v=spf1",
26       "include:openstreetmap.org",      // main openstreetmap.org spf record
27       "-all"
28     ]
29   }),
30
31   // Delegate MTA-STS policy to the main domain
32
33   CNAME("_mta-sts", "_mta-sts.openstreetmap.org."),
34
35   // Main web site
36
37   ALIAS("@", "www.openstreetmap.org."),
38   CNAME("www", "www.openstreetmap.org."),
39   CNAME("api", "api.openstreetmap.org."),
40
41   // Aerial imagery sites on ironbelly
42
43   A("aerial", IRONBELLY_IPV4),
44   AAAA("aerial", IRONBELLY_IPV6),
45   A("a.aerial", IRONBELLY_IPV4),
46   AAAA("a.aerial", IRONBELLY_IPV6),
47   A("b.aerial", IRONBELLY_IPV4),
48   AAAA("b.aerial", IRONBELLY_IPV6),
49   A("c.aerial", IRONBELLY_IPV4),
50   AAAA("c.aerial", IRONBELLY_IPV6),
51
52   // Aerial imagery sites on kessie
53
54   A("coct.aerial", KESSIE_IPV4),
55   AAAA("coct.aerial", KESSIE_IPV6),
56   A("a.coct.aerial", KESSIE_IPV4),
57   AAAA("a.coct.aerial", KESSIE_IPV6),
58   A("b.coct.aerial", KESSIE_IPV4),
59   AAAA("b.coct.aerial", KESSIE_IPV6),
60   A("c.coct.aerial", KESSIE_IPV4),
61   AAAA("c.coct.aerial", KESSIE_IPV6),
62
63   A("topo", KESSIE_IPV4),
64   AAAA("topo", KESSIE_IPV6),
65   A("a.topo", KESSIE_IPV4),
66   AAAA("a.topo", KESSIE_IPV6),
67   A("b.topo", KESSIE_IPV4),
68   AAAA("b.topo", KESSIE_IPV6),
69   A("c.topo", KESSIE_IPV4),
70   AAAA("c.topo", KESSIE_IPV6),
71
72   A("namibia-topo", KESSIE_IPV4),
73   AAAA("namibia-topo", KESSIE_IPV6),
74   A("a.namibia-topo", KESSIE_IPV4),
75   AAAA("a.namibia-topo", KESSIE_IPV6),
76   A("b.namibia-topo", KESSIE_IPV4),
77   AAAA("b.namibia-topo", KESSIE_IPV6),
78   A("c.namibia-topo", KESSIE_IPV4),
79   AAAA("c.namibia-topo", KESSIE_IPV6)
80
81 );