]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap.js
Use osm_web_service for all domains
[dns.git] / src / stateofthemap.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   // SPF policy
17
18   SPF_BUILDER({
19     label: "@",
20     parts: [
21       "v=spf1",
22       "include:_spf.google.com",  // Google GSuite
23       "ip4:212.110.172.32",       // shenron ipv4
24       "ip6:2001:41c9:1:400::32",  // shenron ipv6
25       "ip4:184.104.226.98",       // fafnir ipv4
26       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
27       "-all"
28     ]
29   }),
30
31   // Let google handle email
32
33   MX("@", 1, "aspmx.l.google.com."),
34   MX("@", 5, "alt1.aspmx.l.google.com."),
35   MX("@", 5, "alt2.aspmx.l.google.com."),
36   MX("@", 10, "alt3.aspmx.l.google.com."),
37   MX("@", 10, "alt4.aspmx.l.google.com."),
38
39   // Aliases for google services
40
41   CNAME("login", "ghs.googlehosted.com."),
42   CNAME("docs", "ghs.googlehosted.com."),
43   CNAME("mail", "ghs.googlehosted.com."),
44   CNAME("calendar", "ghs.googlehosted.com."),
45   CNAME("sites", "ghs.googlehosted.com."),
46
47   // Main web server and it's aliases
48
49   osm_web_service("@", "naga.he"),
50   osm_web_service("www", "naga.he"),
51   osm_web_service("2025", "naga.he"),
52   osm_web_service("2024", "naga.he"),
53   osm_web_service("2022", "naga.he"),
54   osm_web_service("2021", "naga.he"),
55   osm_web_service("2020", "naga.he"),
56   osm_web_service("2019", "naga.he"),
57   osm_web_service("2018", "naga.he"),
58   osm_web_service("2017", "naga.he"),
59   osm_web_service("2016", "naga.he"),
60   osm_web_service("2013", "naga.he"),
61   osm_web_service("2012", "ridley"),
62   osm_web_service("2011", "ridley"),
63   osm_web_service("2010", "ridley"),
64   osm_web_service("2009", "naga.he"),
65   osm_web_service("2008", "naga.he"),
66   osm_web_service("2007", "naga.he"),
67
68   // Google Site Verification - Grant
69   TXT("2022", "google-site-verification=wT1dJzSYM_2By372lJ_v9IU1crF21qOySEAPABxUcyo"),
70   TXT("@", "google-site-verification=pqJHZHtrC4UhevQdPlR_2gVDPml6UCwmyHq75bfWLRQ")
71
72 );