mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
#2128 adding issuewild
This commit is contained in:
parent
1f52c46c9b
commit
b0656d1e55
1 changed files with 2 additions and 0 deletions
|
@ -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 #
|
||||
|
|
Loading…
Add table
Reference in a new issue