Skip to content
This repository was archived by the owner on Mar 22, 2019. It is now read-only.

Commit 86dc5b9

Browse files
authored
Add Missing keylength value for subdomain
1 parent a98cc22 commit 86dc5b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/ee-acme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ if [ ! -d $HOME/.acme.sh/${domain_name}_ecc ] || [ ! -f /etc/letsencrypt/live/${
174174
if [ $domain_type = "domain" ]; then
175175
$HOME/.acme.sh/acme.sh --issue -d "$domain_name" -d www.${domain_name} -k ec-384 --standalone --pre-hook "service nginx stop " --post-hook "service nginx start"
176176
elif [ "$domain_type" = "subdomain" ]; then
177-
$HOME/.acme.sh/acme.sh --issue -d "$domain_name" -k --standalone --pre-hook "service nginx stop " --post-hook "service nginx start"
177+
$HOME/.acme.sh/acme.sh --issue -d "$domain_name" -k ec-384 --standalone --pre-hook "service nginx stop " --post-hook "service nginx start"
178178
elif [ "$domain_type" = "wildcard" ]; then
179179
echo "standalone mode do not support wildcard certificates"
180180
exit 1

0 commit comments

Comments
 (0)