Skip to content

Commit 443bf67

Browse files
committed
*Increase sign limit to 100
1 parent 56b5704 commit 443bf67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/v-add-letsencrypt-domain

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ i=1
5656
for alias in $(echo $domain,$aliases |tr ',' '\n' |sort -u); do
5757
$BIN/v-check-letsencrypt-domain $user $alias
5858
check_result $? "LE domain validation" >/dev/null
59-
if [ "$i" -gt 6 ]; then
60-
check_result $E_LIMIT "LE can't sign more than 6 domains"
59+
if [ "$i" -gt 100 ]; then
60+
check_result $E_LIMIT "LE can't sign more than 100 domains"
6161
fi
6262
i=$((i++))
6363
done

0 commit comments

Comments
 (0)