X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/2d04a34679b5aa1e2fd667f7536ca32c1088af53..867526185ce8ee02d85e3fa19a465831e9041b6b:/src/stateofthemap-eu.js diff --git a/src/stateofthemap-eu.js b/src/stateofthemap-eu.js index 054aec3..14776b1 100644 --- a/src/stateofthemap-eu.js +++ b/src/stateofthemap-eu.js @@ -2,26 +2,32 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), // Publish CAA records indicating that only letsencrypt should issue certificates - // CAA_BUILDER({ - // label: "@", - // iodef: "mailto:hostmaster@openstreetmap.org", - // issue: [ - // "letsencrypt.org", - // ], - // issuewild: [ - // "letsencrypt.org", - // ], - // }), + CAA_BUILDER({ + label: "@", + iodef: "mailto:hostmaster@openstreetmap.org", + issue: [ + "letsencrypt.org", + ], + issuewild: [ + "letsencrypt.org", + ], + }), - // Let openstreetmap.at handle email + // Block email delivery - // MX("@", 1, "mail.openstreetmap.at."), + TXT("_dmarc", "v=DMARC1; p=reject; sp=reject; adkim=s; aspf=s;"), + TXT("*._domainkey", "v=DKIM1; p="), + TXT("@", "v=spf1 -all"), - // Main web server and it's aliases - - A("@", "185.199.108.153"), - A("@", "185.199.109.153"), - A("@", "185.199.110.153"), - A("@", "185.199.111.153") + // Site hosted on github pages + ALIAS("@", "openstreetmap-polska.github.io."), + CNAME("www", "openstreetmap-polska.github.io."), + + // Previous editions + + A("2014", "49.12.5.171"), + CNAME("2023", "osmbe.github.io."), + CNAME("2024", "openstreetmap-polska.github.io.") + );