]> git.openstreetmap.org Git - dns.git/blob - src/ideditor.js
Use github pages for ideditor
[dns.git] / src / ideditor.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   // Delegate SPF policy to the main domain
17
18   SPF_BUILDER({
19     label: "@",
20     parts: [
21       "v=spf1",
22       "include:openstreetmap.org",      // main openstreetmap.org spf record
23       "-all"
24     ]
25   }),
26
27   // site hosted on github pages
28
29   ALIAS("@", "openstreetmap.github.io."),
30   CNAME("www", "openstreetmap.github.io.")
31
32 );