forked from Domain-Connect/Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblink.new.domain-connect.json
More file actions
96 lines (96 loc) · 2.39 KB
/
Copy pathblink.new.domain-connect.json
File metadata and controls
96 lines (96 loc) · 2.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"providerId": "blink.new",
"providerName": "Blink",
"serviceId": "domain-connect",
"serviceName": "Blink Domain Connect",
"version": 1,
"logoUrl": "https://blink.new/blink/blink-logo-icon--dark.svg",
"description": "Connect your domain to Blink for website hosting, subdomains, and email services",
"variableDescription": "ip: primary A record IP. ip2: secondary A record IP (optional). subdomain: subdomain name. target: CNAME destination. verification: domain verification token. acm_host/acm_target: SSL validation CNAME. mx1/mx2: MX record servers. spf: SPF include rule. dkim_selector/dkim_value: DKIM key.",
"syncPubKeyDomain": "domainconnect.blink.new",
"syncRedirectDomain": "blink.new,api.blink.new,app.blink.new",
"hostRequired": false,
"syncBlock": false,
"records": [
{
"groupId": "verification",
"type": "TXT",
"host": "_blink",
"data": "blink-verify=%verification%",
"ttl": 600
},
{
"groupId": "apex",
"type": "A",
"host": "@",
"pointsTo": "%ip%",
"ttl": 600
},
{
"groupId": "apex-redundant",
"type": "A",
"host": "@",
"pointsTo": "%ip2%",
"ttl": 600
},
{
"groupId": "www",
"type": "CNAME",
"host": "www",
"pointsTo": "%target%",
"ttl": 600
},
{
"groupId": "subdomain",
"type": "CNAME",
"host": "%subdomain%",
"pointsTo": "%target%",
"ttl": 600
},
{
"groupId": "acm-validation",
"type": "CNAME",
"host": "%acm_host%",
"pointsTo": "%acm_target%",
"ttl": 600
},
{
"groupId": "mx-primary",
"type": "MX",
"host": "@",
"pointsTo": "%mx1%",
"priority": 10,
"ttl": 600
},
{
"groupId": "mx-secondary",
"type": "MX",
"host": "@",
"pointsTo": "%mx2%",
"priority": 20,
"ttl": 600
},
{
"groupId": "email-spf",
"type": "SPFM",
"host": "@",
"spfRules": "include:%spf%"
},
{
"groupId": "email-dkim",
"type": "TXT",
"host": "%dkim_selector%._domainkey",
"data": "%dkim_value%",
"ttl": 600
},
{
"groupId": "email-dmarc",
"type": "TXT",
"host": "_dmarc",
"data": "v=DMARC1; p=quarantine; rua=mailto:%dmarc_email%",
"ttl": 600,
"txtConflictMatchingMode": "All",
"essential": "OnApply"
}
]
}