]> git.openstreetmap.org Git - dns.git/blob - src/ideditor.js
Dockerfile run check by default. Add arm64 support
[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   // Main web server and it's aliases
28
29   A("@", "192.30.252.153"),
30   A("@", "192.30.252.154"),
31   A("www", "192.30.252.153"),
32   A("www", "192.30.252.154")
33
34 );