DNSSEC: use RSASHA256 for the .guide tld too
This commit is contained in:
parent
a68703dfb3
commit
d790cae0e2
2 changed files with 2 additions and 1 deletions
|
@ -511,7 +511,7 @@ zone:
|
||||||
########################################################################
|
########################################################################
|
||||||
|
|
||||||
def dnssec_choose_algo(domain, env):
|
def dnssec_choose_algo(domain, env):
|
||||||
if domain.endswith(".email"):
|
if domain.endswith(".email") or domain.endswith(".guide"):
|
||||||
# At least at GoDaddy, this is the only algorithm supported.
|
# At least at GoDaddy, this is the only algorithm supported.
|
||||||
return "RSASHA256"
|
return "RSASHA256"
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,7 @@ mkdir -p "$STORAGE_ROOT/dns/dnssec";
|
||||||
# Requires `RSASHA256`
|
# Requires `RSASHA256`
|
||||||
#
|
#
|
||||||
# * .email
|
# * .email
|
||||||
|
# * .guide
|
||||||
|
|
||||||
FIRST=1 #NODOC
|
FIRST=1 #NODOC
|
||||||
for algo in RSASHA1-NSEC3-SHA1 RSASHA256; do
|
for algo in RSASHA1-NSEC3-SHA1 RSASHA256; do
|
||||||
|
|
Loading…
Reference in a new issue