X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/1be3432c92788727d1bae95ec9e3a02762132610..c69699901bc0ec19e7a2aa81a61ff74460815a8c:/src/stateofthemap-eu.js diff --git a/src/stateofthemap-eu.js b/src/stateofthemap-eu.js index 4e83e5d..9ff14f0 100644 --- a/src/stateofthemap-eu.js +++ b/src/stateofthemap-eu.js @@ -2,17 +2,28 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), // Publish CAA records indicating that only letsencrypt should issue certificates - CAA("@", "issue", "letsencrypt.org", CF_TTL_ANY), - CAA("@", "issuewild", "letsencrypt.org", CF_TTL_ANY), - CAA("@", "iodef", "mailto:hostmaster@openstreetmap.org"), + CAA_BUILDER({ + label: "@", + iodef: "mailto:hostmaster@openstreetmap.org", + issue: [ + "letsencrypt.org", + ], + issuewild: [ + "letsencrypt.org", + ], + }), // Let openstreetmap.at handle email - MX("@", 1, "openstreetmap.at.", TTL("1h")), + // MX("@", 1, "mail.openstreetmap.at."), // Main web server and it's aliases - A("@", "88.198.206.107", TTL("10m")), - A("www", "88.198.206.107", TTL("10m")) + A("@", "185.199.108.153"), + A("@", "185.199.109.153"), + A("@", "185.199.110.153"), + A("@", "185.199.111.153"), + + CNAME("www", "osmbe.github.io.") );