-
Notifications
You must be signed in to change notification settings - Fork 204
/
coda.io.apexdomain.json
37 lines (37 loc) · 1.08 KB
/
coda.io.apexdomain.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"providerId":"coda.io",
"providerName":"Coda",
"serviceId":"apexdomain",
"serviceName":"Coda Site",
"version": 1,
"syncPubKeyDomain" : "domainconnect.coda.io",
"logoUrl":"https://cdn.coda.io/icons/png/color/coda-192.png",
"description":"Allows serving Coda documents from your own domain (apex only).",
"variableDescription":"`ipAddress[1, 2, 3]` refers to the IP addresses of Coda's custom domain server. `environment` refers to the environment for Coda's custom domain server. `verification` refers to the TXT verification of doc ownership",
"records":[
{
"type":"A",
"host":"@",
"pointsTo":"%ipAddress1%",
"ttl":600
},
{
"type":"A",
"host":"@",
"pointsTo":"%ipAddress2%",
"ttl":600
},
{
"type":"A",
"host":"@",
"pointsTo":"%ipAddress3%",
"ttl":600
},
{
"type": "TXT",
"host": "_coda",
"data": "%verification%",
"ttl":600
}
]
}