]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap.js
Factor out host addresses to a set of constants
[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("@", "issue", "letsencrypt.org", CF_TTL_ANY),
6   CAA("@", "issuewild", "letsencrypt.org", CF_TTL_ANY),
7   CAA("@", "iodef", "mailto:hostmaster@openstreetmap.org"),
8
9   // Let google handle email
10
11   MX("@", 1, "aspmx.l.google.com.", TTL("1h")),
12   MX("@", 5, "alt1.aspmx.l.google.com.", TTL("1h")),
13   MX("@", 5, "alt2.aspmx.l.google.com.", TTL("1h")),
14   MX("@", 10, "alt3.aspmx.l.google.com.", TTL("1h")),
15   MX("@", 10, "alt4.aspmx.l.google.com.", TTL("1h")),
16
17   // Aliases for google services
18
19   CNAME("login", "ghs.google.com."),
20
21   // Main web server and it's aliases
22
23   A("@", RIDLEY_IPV4, TTL("10m")),
24   A("www", RIDLEY_IPV4, TTL("10m")),
25   A("2020", RIDLEY_IPV4, TTL("10m")),
26   A("2019", RIDLEY_IPV4, TTL("10m")),
27   A("2018", RIDLEY_IPV4, TTL("10m")),
28   A("2017", RIDLEY_IPV4, TTL("10m")),
29   A("2016", RIDLEY_IPV4, TTL("10m")),
30   A("2014", RIDLEY_IPV4, TTL("10m")),
31   A("2013", RIDLEY_IPV4, TTL("10m")),
32   A("2012", RIDLEY_IPV4, TTL("10m")),
33   A("2011", RIDLEY_IPV4, TTL("10m")),
34   A("2010", RIDLEY_IPV4, TTL("10m")),
35   A("2009", RIDLEY_IPV4, TTL("10m")),
36   A("2008", RIDLEY_IPV4, TTL("10m")),
37   A("2007", RIDLEY_IPV4, TTL("10m"))
38
39 );