]> git.openstreetmap.org Git - dns.git/blob - src/openstreetmap-za.js
7fcc16d7f8bf22ec995ecc8e20cc5232b854b881
[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", LOCKHEED_IPV4),
44   AAAA("aerial", LOCKHEED_IPV6),
45   A("a.aerial", LOCKHEED_IPV4),
46   AAAA("a.aerial", LOCKHEED_IPV6),
47   A("b.aerial", LOCKHEED_IPV4),
48   AAAA("b.aerial", LOCKHEED_IPV6),
49   A("c.aerial", LOCKHEED_IPV4),
50   AAAA("c.aerial", LOCKHEED_IPV6),
51
52   // HTTPS / SVCB records
53   HTTPS("aerial", 1, ".", "alpn=h2"),
54   HTTPS("a.aerial", 1, ".", "alpn=h2"),
55   HTTPS("b.aerial", 1, ".", "alpn=h2"),
56   HTTPS("c.aerial", 1, ".", "alpn=h2"),
57
58   A("coct.aerial", LOCKHEED_IPV4),
59   AAAA("coct.aerial", LOCKHEED_IPV6),
60   A("a.coct.aerial", LOCKHEED_IPV4),
61   AAAA("a.coct.aerial", LOCKHEED_IPV6),
62   A("b.coct.aerial", LOCKHEED_IPV4),
63   AAAA("b.coct.aerial", LOCKHEED_IPV6),
64   A("c.coct.aerial", LOCKHEED_IPV4),
65   AAAA("c.coct.aerial", LOCKHEED_IPV6),
66
67   // HTTPS / SVCB records
68   HTTPS("coct.aerial", 1, ".", "alpn=h2"),
69   HTTPS("a.coct.aerial", 1, ".", "alpn=h2"),
70   HTTPS("b.coct.aerial", 1, ".", "alpn=h2"),
71   HTTPS("c.coct.aerial", 1, ".", "alpn=h2"),
72
73   A("topo", LOCKHEED_IPV4),
74   AAAA("topo", LOCKHEED_IPV6),
75   A("a.topo", LOCKHEED_IPV4),
76   AAAA("a.topo", LOCKHEED_IPV6),
77   A("b.topo", LOCKHEED_IPV4),
78   AAAA("b.topo", LOCKHEED_IPV6),
79   A("c.topo", LOCKHEED_IPV4),
80   AAAA("c.topo", LOCKHEED_IPV6),
81
82   // HTTPS / SVCB records
83   HTTPS("topo", 1, ".", "alpn=h2"),
84   HTTPS("a.topo", 1, ".", "alpn=h2"),
85   HTTPS("b.topo", 1, ".", "alpn=h2"),
86   HTTPS("c.topo", 1, ".", "alpn=h2"),
87
88   A("namibia-topo", LOCKHEED_IPV4),
89   AAAA("namibia-topo", LOCKHEED_IPV6),
90   A("a.namibia-topo", LOCKHEED_IPV4),
91   AAAA("a.namibia-topo", LOCKHEED_IPV6),
92   A("b.namibia-topo", LOCKHEED_IPV4),
93   AAAA("b.namibia-topo", LOCKHEED_IPV6),
94   A("c.namibia-topo", LOCKHEED_IPV4),
95   AAAA("c.namibia-topo", LOCKHEED_IPV6),
96
97   // HTTPS / SVCB records
98   HTTPS("namibia-topo", 1, ".", "alpn=h2"),
99   HTTPS("a.namibia-topo", 1, ".", "alpn=h2"),
100   HTTPS("b.namibia-topo", 1, ".", "alpn=h2"),
101   HTTPS("c.namibia-topo", 1, ".", "alpn=h2")
102
103 );