]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap-eu.js
14f4836b8c433a5af1a38b2fa3a66b177d7922e3
[dns.git] / src / stateofthemap-eu.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     iodef: "mailto:hostmaster@openstreetmap.org",
8     issue: [
9       "letsencrypt.org",
10     ],
11     issuewild: [
12       "letsencrypt.org",
13     ],
14   }),
15
16   // Let openstreetmap.at handle email
17
18   // MX("@", 1, "mail.openstreetmap.at."),
19
20   // site hosted on github pages
21
22   ALIAS("@", "osmbe.github.io."),
23   CNAME("www", "osmbe.github.io.")
24
25 );