]> git.openstreetmap.org Git - dns.git/blob - src/openstreetmap-uk.js
Use templated standard CAA
[dns.git] / src / openstreetmap-uk.js
1 D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
2
3   // Include OSM standard CAA records
4   OSM_CAA,
5
6   // Let the main domain handle the email
7
8   MX("@", 10, "a.mx.openstreetmap.org."),
9
10   // Delegate SPF policy to the main domain
11
12   SPF_BUILDER({
13     label: "@",
14     parts: [
15       "v=spf1",
16       "include:openstreetmap.org",      // main openstreetmap.org spf record
17       "-all"
18     ]
19   }),
20
21   // Delegate MTA-STS policy to the main domain
22
23   CNAME("_mta-sts", "_mta-sts.openstreetmap.org."),
24
25   // Main web site
26
27   ALIAS("@", "www.openstreetmap.org."),
28   CNAME("www", "www.openstreetmap.org."),
29   CNAME("api", "api.openstreetmap.org."),
30
31   // Shaun McDonald's taginfo instance
32
33   CNAME("taginfo", "proxy.mythic-beasts.com."),
34
35   // Aerial imagery sites
36
37   osm_web_service("hampshire.aerial", "lockheed"),
38   osm_web_service("a.hampshire.aerial", "lockheed"),
39   osm_web_service("b.hampshire.aerial", "lockheed"),
40   osm_web_service("c.hampshire.aerial", "lockheed"),
41
42   osm_web_service("surrey.aerial", "lockheed"),
43   osm_web_service("a.surrey.aerial", "lockheed"),
44   osm_web_service("b.surrey.aerial", "lockheed"),
45   osm_web_service("c.surrey.aerial", "lockheed"),
46
47   osm_web_service("os", "lockheed"),
48   osm_web_service("a.os", "lockheed"),
49   osm_web_service("b.os", "lockheed"),
50   osm_web_service("c.os", "lockheed"),
51
52   osm_web_service("ea", "lockheed"),
53   osm_web_service("a.ea", "lockheed"),
54   osm_web_service("b.ea", "lockheed"),
55   osm_web_service("c.ea", "lockheed"),
56
57 );