-
Notifications
You must be signed in to change notification settings - Fork 0
/
records.json
60 lines (59 loc) · 1.44 KB
/
records.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"email": "[email protected]",
"token": "some-token",
"records": [
{
"action": "set",
"force": true,
"params": {
"name": "www.example.com",
"content": "subdomain.example.com",
"type": "CNAME",
"ttl": 600,
"proxied": true
}
},
{
"action": "ddns",
"params": {
"name": "subdomain.example.com",
"ttl": 600,
"proxied": true
}
},
{
"action": "set",
"params": {
"name": "mail.example.com",
"content": "192.168.0.1",
"type": "A",
"proxied": false
}
},
{
"action": "set",
"params": {
"name": "mx-1.exampe.com",
"content": "mail.example.com",
"type": "MX",
"priority": 100
}
},
{
"action": "set",
"params": {
"name": "_dmarc.example.com",
"content": "v=DMARC1;",
"type": "TXT",
"ttl": 1
}
},
{
"action": "delete",
"params": {
"name": "record.to.delete.example.com",
"type": "CNAME"
}
}
]
}