]> git.openstreetmap.org Git - dns.git/blob - src/osm2pgsql.js
Add DNS zone for osm2pgsql.{org,com}
[dns.git] / src / osm2pgsql.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   // Main web server and it's aliases
10
11   A("@", "138.201.190.130"),
12   AAAA("@", "2a01:4f8:1c17:6433::1"),
13   A("www", "138.201.190.130"),
14   AAAA("www", "2a01:4f8:1c17:6433::1")
15
16 );