-
Notifications
You must be signed in to change notification settings - Fork 13
/
stateofthemap.js
104 lines (91 loc) · 2.76 KB
/
stateofthemap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
// Publish CAA records indicating that only letsencrypt should issue certificates
CAA_BUILDER({
label: "@",
iodef: "mailto:hostmaster@openstreetmap.org",
issue: [
"letsencrypt.org",
],
issuewild: [
"letsencrypt.org",
],
}),
// SPF policy
SPF_BUILDER({
label: "@",
parts: [
"v=spf1",
"include:_spf.google.com", // Google GSuite
"ip4:212.110.172.32", // shenron ipv4
"ip6:2001:41c9:1:400::32", // shenron ipv6
"ip4:184.104.226.98", // fafnir ipv4
"ip6:2001:470:1:b3b::2", // fafnir ipv6
"-all"
]
}),
// Let google handle email
MX("@", 1, "aspmx.l.google.com."),
MX("@", 5, "alt1.aspmx.l.google.com."),
MX("@", 5, "alt2.aspmx.l.google.com."),
MX("@", 10, "alt3.aspmx.l.google.com."),
MX("@", 10, "alt4.aspmx.l.google.com."),
// Aliases for google services
CNAME("login", "ghs.googlehosted.com."),
CNAME("docs", "ghs.googlehosted.com."),
CNAME("mail", "ghs.googlehosted.com."),
CNAME("calendar", "ghs.googlehosted.com."),
CNAME("sites", "ghs.googlehosted.com."),
// Main web server and it's aliases
A("@", NAGA_IPV4),
AAAA("@", NAGA_IPV6),
A("www", NAGA_IPV4),
AAAA("www", NAGA_IPV6),
A("2024", NAGA_IPV4),
AAAA("2024", NAGA_IPV6),
A("2022", NAGA_IPV4),
AAAA("2022", NAGA_IPV6),
A("2021", NAGA_IPV4),
AAAA("2021", NAGA_IPV6),
A("2020", NAGA_IPV4),
AAAA("2020", NAGA_IPV6),
A("2019", NAGA_IPV4),
AAAA("2019", NAGA_IPV6),
A("2018", NAGA_IPV4),
AAAA("2018", NAGA_IPV6),
A("2017", NAGA_IPV4),
AAAA("2017", NAGA_IPV6),
A("2016", NAGA_IPV4),
AAAA("2016", NAGA_IPV6),
A("2013", NAGA_IPV4),
AAAA("2013", NAGA_IPV6),
A("2012", RIDLEY_IPV4),
A("2011", RIDLEY_IPV4),
A("2010", RIDLEY_IPV4),
A("2009", NAGA_IPV4),
AAAA("2009", NAGA_IPV6),
A("2008", NAGA_IPV4),
AAAA("2008", NAGA_IPV6),
A("2007", NAGA_IPV4),
AAAA("2007", NAGA_IPV6),
// HTTPS / SVCB records
HTTPS("@", 1, ".", "alpn=h2"),
HTTPS("www", 1, ".", "alpn=h2"),
HTTPS("2024", 1, ".", "alpn=h2"),
HTTPS("2022", 1, ".", "alpn=h2"),
HTTPS("2021", 1, ".", "alpn=h2"),
HTTPS("2020", 1, ".", "alpn=h2"),
HTTPS("2019", 1, ".", "alpn=h2"),
HTTPS("2018", 1, ".", "alpn=h2"),
HTTPS("2017", 1, ".", "alpn=h2"),
HTTPS("2016", 1, ".", "alpn=h2"),
HTTPS("2013", 1, ".", "alpn=h2"),
HTTPS("2012", 1, ".", "alpn=h2"),
HTTPS("2011", 1, ".", "alpn=h2"),
HTTPS("2010", 1, ".", "alpn=h2"),
HTTPS("2009", 1, ".", "alpn=h2"),
HTTPS("2008", 1, ".", "alpn=h2"),
HTTPS("2007", 1, ".", "alpn=h2"),
// Google Site Verification - Grant
TXT("2022", "google-site-verification=wT1dJzSYM_2By372lJ_v9IU1crF21qOySEAPABxUcyo"),
TXT("@", "google-site-verification=pqJHZHtrC4UhevQdPlR_2gVDPml6UCwmyHq75bfWLRQ")
);