This commit is contained in:
Utkarsh Sethi 2024-08-31 22:25:23 +02:00 committed by GitHub
commit 1d3b4bed78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -139,6 +139,7 @@ def _build_dns_conf(base_domain, include_empty_AAAA_if_no_ipv6=False):
# if ipv6 available
{"type": "AAAA", "name": "*", "value": "valid-ipv6", "ttl": 3600},
{"type": "CAA", "name": "@", "value": "0 issue \"letsencrypt.org\"", "ttl": 3600},
{"type": "CAA", "name": "@", "value": "0 issuewild \"letsencrypt.org\"", "ttl": 3600},
],
"example_of_a_custom_rule": [
{"type": "SRV", "name": "_matrix", "value": "domain.tld.", "ttl": 3600}
@ -249,6 +250,7 @@ def _build_dns_conf(base_domain, include_empty_AAAA_if_no_ipv6=False):
extra.append([f"*{suffix}", ttl, "AAAA", None])
extra.append([basename, ttl, "CAA", '0 issue "letsencrypt.org"'])
extra.append([basename, ttl, "CAA", '0 issuewild "letsencrypt.org"'])
####################
# Standard records #