forked from Domain-Connect/Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.com.deploy-apex.json
More file actions
48 lines (48 loc) · 1.1 KB
/
deno.com.deploy-apex.json
File metadata and controls
48 lines (48 loc) · 1.1 KB
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
38
39
40
41
42
43
44
45
46
47
48
{
"providerId": "deno.com",
"providerName": "Deno",
"serviceId": "deploy-apex",
"serviceName": "Deno Deploy",
"version": 1,
"logoUrl": "https://deno.com/logo.svg",
"description": "Configuration for Deno Deploy custom domains. `verification` is always set, `ip4`+`ip6` AND/OR `wildcard_a`+`wildcard_aaaa` are set depending on domain kind",
"syncPubKeyDomain": "console.deno.com",
"syncRedirectDomain": "console.deno.com",
"records": [
{
"groupId": "verification",
"type": "CNAME",
"host": "_acme-challenge",
"pointsTo": "%verification%",
"ttl": 300
},
{
"groupId": "apex_a",
"type": "A",
"host": "@",
"pointsTo": "%ip4%",
"ttl": 300
},
{
"groupId": "apex_aaaa",
"type": "AAAA",
"host": "@",
"pointsTo": "%ip6%",
"ttl": 300
},
{
"groupId": "wildcard_a",
"type": "A",
"host": "*",
"pointsTo": "%ip4%",
"ttl": 300
},
{
"groupId": "wildcard_aaaa",
"type": "AAAA",
"host": "*",
"pointsTo": "%ip6%",
"ttl": 300
}
]
}