-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml.dist
47 lines (41 loc) · 1.23 KB
/
config.toml.dist
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
# How often the script should check for changes in seconds
update_interval_in_seconds=10
[[domains]]
# The cloudflare API token that will be used to authenticate with the API
auth_token="Your auth token here"
# The cloudflare zone ID that will be used to identify the zone to update
zone_id="Your zone ID here"
[[domains.records]]
# The cloudflare record ID that will be used to identify the record to update
record_id="The record ID here"
# ttl (time to live) for the record
# 1 = automatic
ttl=1
# proxied = true if the record is proxied by cloudflare
proxied=false
# The domain name that will be updated
dns_name="test.example.priv"
# The type of record that will be updated
# Valid values are: A, AAAA
dns_type="A"
[[domains.records]]
record_id="The record ID here"
ttl=1
proxied=false
dns_name="home.example.priv"
dns_type="A"
[[domains]]
auth_token="Your auth token here"
zone_id="Your zone ID here"
[[domains.records]]
record_id="The record ID here"
ttl=1
proxied=false
dns_name="test.example.test"
dns_type="A"
[[domains.records]]
record_id="The record ID here"
ttl=1
proxied=false
dns_name="home.example.test"
dns_type="A"