]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap.js
Add sotm google search console verification
[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     ttl: "1h",
8     iodef: "mailto:hostmaster@openstreetmap.org",
9     issue: [
10       "letsencrypt.org",
11     ],
12     issuewild: [
13       "letsencrypt.org",
14     ],
15   }),
16
17   // SPF policy
18
19   SPF_BUILDER({
20     label: "@",
21     ttl: "1h",
22     parts: [
23       "v=spf1",
24       "include:_spf.google.com",  // Google GSuite
25       "ip4:212.110.172.32",       // shenron ipv4
26       "ip6:2001:41c9:1:400::32",  // shenron ipv6
27       "-all"
28     ]
29   }),
30
31   // Let google handle email
32
33   MX("@", 1, "aspmx.l.google.com.", TTL("1h")),
34   MX("@", 5, "alt1.aspmx.l.google.com.", TTL("1h")),
35   MX("@", 5, "alt2.aspmx.l.google.com.", TTL("1h")),
36   MX("@", 10, "alt3.aspmx.l.google.com.", TTL("1h")),
37   MX("@", 10, "alt4.aspmx.l.google.com.", TTL("1h")),
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   A("@", RIDLEY_IPV4, TTL("10m")),
50   A("www", RIDLEY_IPV4, TTL("10m")),
51   A("2022", RIDLEY_IPV4, TTL("10m")),
52   A("2021", RIDLEY_IPV4, TTL("10m")),
53   A("2020", RIDLEY_IPV4, TTL("10m")),
54   A("2019", RIDLEY_IPV4, TTL("10m")),
55   A("2018", RIDLEY_IPV4, TTL("10m")),
56   A("2017", RIDLEY_IPV4, TTL("10m")),
57   A("2016", RIDLEY_IPV4, TTL("10m")),
58   A("2014", RIDLEY_IPV4, TTL("10m")),
59   A("2013", RIDLEY_IPV4, TTL("10m")),
60   A("2012", RIDLEY_IPV4, TTL("10m")),
61   A("2011", RIDLEY_IPV4, TTL("10m")),
62   A("2010", RIDLEY_IPV4, TTL("10m")),
63   A("2009", RIDLEY_IPV4, TTL("10m")),
64   A("2008", RIDLEY_IPV4, TTL("10m")),
65   A("2007", RIDLEY_IPV4, TTL("10m")),
66
67   // Google Site Verification - Grant
68   TXT("2022", "google-site-verification=wT1dJzSYM_2By372lJ_v9IU1crF21qOySEAPABxUcyo")
69
70 );