]> git.openstreetmap.org Git - dns.git/blob - src/switch2osm.js
Use templated standard CAA
[dns.git] / src / switch2osm.js
1 D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
2
3   // Include OSM standard CAA records
4   OSM_CAA,
5
6   // Delegate SPF policy to the main domain
7
8   SPF_BUILDER({
9     label: "@",
10     parts: [
11       "v=spf1",
12       "include:openstreetmap.org",  // main openstreetmap.org spf record
13       "-all"
14     ]
15   }),
16
17   // Main web server and it's aliases
18
19   osm_web_service("@", "naga"),
20   osm_web_service("www", "naga"),
21
22 );