dns/master: Added support for dname to root zone

dehydrated
Felix Stupp 4 years ago
parent 0b388a7e9a
commit 2158b2717d
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -19,3 +19,5 @@ refresh: 86400
retry: 7200
expire: 3600000
ttl: 172800
dname_subdomain: "external" # Must not contain the base domain, can be used to allow ignoring local overrides on purpose, will be ignored if empty

@ -10,4 +10,8 @@ $TTL 86400
; Certification Authority Authorization
@ IN CAA 0 issue "letsencrypt.org"
{% if dname_subdomain | length > 0 %}
{{ dname_subdomain }} IN DNAME @
{% endif %}
{{ entries }}

Loading…
Cancel
Save