mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-14 10:37:39 -07:00
*Increase sign limit to 100
This commit is contained in:
parent
56b57040d5
commit
443bf67095
1 changed files with 2 additions and 2 deletions
|
@ -56,8 +56,8 @@ i=1
|
|||
for alias in $(echo $domain,$aliases |tr ',' '\n' |sort -u); do
|
||||
$BIN/v-check-letsencrypt-domain $user $alias
|
||||
check_result $? "LE domain validation" >/dev/null
|
||||
if [ "$i" -gt 6 ]; then
|
||||
check_result $E_LIMIT "LE can't sign more than 6 domains"
|
||||
if [ "$i" -gt 100 ]; then
|
||||
check_result $E_LIMIT "LE can't sign more than 100 domains"
|
||||
fi
|
||||
i=$((i++))
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue