1
0
digitalocean-dynamic-dns-ip/digitalocean-dynamic-ip.sample.json
Tony Grosinger a83b135d14 Run updates on a timer loop
The config yaml provides an interval period which is used to determine
how often to update the IP addresses on the domains. The local IP
address is checked each time before updating the domains.
2022-12-06 13:36:54 -08:00

34 lines
686 B
JSON

{
"interval": "30m",
"apikey": "samplekeydasjkdhaskjdhrwofihsamplekey",
"doPageSize": 20,
"useIPv4": true,
"useIPv6": true,
"ipv4CheckUrl": "https://api.ipify.org/?format=text",
"ipv6CheckUrl": "https://api64.ipify.org/?format=text",
"allowIPv4InIPv6": false,
"domains": [
{
"domain": "example.com",
"records": [
{
"name": "subdomainOrRecord",
"type": "A"
},
{
"name": "subdomainOrRecord",
"type": "AAAA"
}
]
},
{
"domain": "example2.com",
"records": [
{
"name": "subdomainOrRecord2",
"type": "A"
}
]
}
]
}