fix(server/ddns): use variables instead of hardcoded values
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
473d1d70f9
commit
8e97008f4d
1 changed files with 4 additions and 4 deletions
|
@ -2,14 +2,14 @@ period = 300
|
|||
allow-ipv6 = true
|
||||
|
||||
provider cloudflare.com:1 {
|
||||
username = mfocko.xyz
|
||||
username = {{ cloudflare_zone }}
|
||||
password = {{ cloudflare_token }}
|
||||
hostname = mountainside.mfocko.xyz
|
||||
hostname = {{ host_fqdn }}
|
||||
}
|
||||
|
||||
provider cloudflare.com:2 {
|
||||
username = mfocko.xyz
|
||||
username = {{ cloudflare_zone }}
|
||||
password = {{ cloudflare_token }}
|
||||
hostname = mountainside.mfocko.xyz
|
||||
hostname = {{ host_fqdn }}
|
||||
wildcard = true
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue