parent
9bbfed09aa
commit
7973582e4a
2 changed files with 54 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||||
|
auth_email="" # The email used to login 'https://dash.cloudflare.com' |
||||||
|
auth_method="" # Set to "global" for Global API Key or "token" for Scoped API Token |
||||||
|
auth_key="" # Your API Token or Global API Key |
||||||
|
zone_identifier="" # Can be found in the "Overview" tab of your domain |
||||||
|
record_name="" # Which record you want to be synced |
||||||
|
ttl="3600" # Set the DNS TTL (seconds) |
||||||
|
proxy="false" # Set the proxy to true or false |
||||||
|
sitename="" # Title of site "Example Site" |
||||||
|
slackchannel="" # Slack Channel #example |
||||||
|
slackuri="" # URI for Slack WebHook "https://hooks.slack.com/services/xxxxx" |
||||||
|
discorduri="" # URI for Discord WebHook "https://discordapp.com/api/webhooks/xxxxx" |
@ -0,0 +1,43 @@ |
|||||||
|
############## CLOUDFLARE CREDENTIALS ############## |
||||||
|
# @auth_email - The email used to login 'https://dash.cloudflare.com' |
||||||
|
# @auth_method - Set to "global" for Global API Key or "token" for Scoped API Token |
||||||
|
# @auth_key - Your API Token or Global API Key |
||||||
|
# @zone_identifier - Can be found in the "Overview" tab of your domain |
||||||
|
# -------------------------------------------------- # |
||||||
|
auth_email="" |
||||||
|
auth_method="token" |
||||||
|
auth_key="" |
||||||
|
zone_identifier="" |
||||||
|
|
||||||
|
############# DNS RECORD CONFIGURATION ############# |
||||||
|
# @record_name - Which record you want to be synced |
||||||
|
# @ttl - DNS TTL (seconds), can be set between (30 if enterprise) 60 and 86400 seconds, or 1 for Automatic |
||||||
|
# @proxy - Set the proxy to true or false |
||||||
|
# -------------------------------------------------- # |
||||||
|
record_name="" |
||||||
|
ttl="3600" |
||||||
|
proxy="false" |
||||||
|
|
||||||
|
############### SCRIPT CONFIGURATION ############### |
||||||
|
# @static_IPv6_mode - Useful if you are using EUI-64 IPv6 address with SLAAC IPv6 suffix token. (Privacy Extensions) |
||||||
|
# + Or some kind of static IPv6 assignment from DHCP server configuration, etc |
||||||
|
# + If set to false, the IPv6 address will be acquired from external services |
||||||
|
# @last_notable_hexes - Used with `static_IPv6_mode`. Configure this to target what specific IPv6 address to search for |
||||||
|
# + E.g. Your global primary IPv6 address is 2404:6800:4001:80e::59ec:ab12:34cd, then |
||||||
|
# + You can put values (i.e. static suffixes) such as "34cd", "ab12:34cd" and etc |
||||||
|
# @log_header_name - Header name used for logs |
||||||
|
# -------------------------------------------------- # |
||||||
|
static_IPv6_mode="false" |
||||||
|
last_notable_hexes="ffff:ffff" |
||||||
|
log_header_name="DDNS Updater_v6" |
||||||
|
|
||||||
|
############# WEBHOOKS CONFIGURATION ############### |
||||||
|
# @sitename - Title of site "Example Site" |
||||||
|
# @slackchannel - Slack Channel #example |
||||||
|
# @slackuri - URI for Slack WebHook "https://hooks.slack.com/services/xxxxx" |
||||||
|
# @discorduri - URI for Discord WebHook "https://discordapp.com/api/webhooks/xxxxx" |
||||||
|
# -------------------------------------------------- # |
||||||
|
sitename="" |
||||||
|
slackchannel="" |
||||||
|
slackuri="" |
||||||
|
discorduri="" |
Loading…
Reference in new issue