]> git.openstreetmap.org Git - dns.git/blob - src/osm2pgsql.js
070dda9aef2eb4ff893c4321a14fddf4543e8195
[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_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   // Main web server and it's aliases
18
19   A("@", "138.201.190.130", TTL("10m")),
20   AAAA("@", "2a01:4f8:1c17:6433::1", TTL("10m")),
21   A("www", "138.201.190.130", TTL("10m")),
22   AAAA("www", "2a01:4f8:1c17:6433::1", TTL("10m"))
23
24 );