fix: also in skel
This commit is contained in:
parent
b85e943fd1
commit
3d6ab17df2
1 changed files with 11 additions and 4 deletions
|
@ -4,9 +4,16 @@ trap exit TERM
|
|||
|
||||
if [ -n "${CERTBOT_DOMAINS}" ]; then
|
||||
echo "registering..."
|
||||
certbot --nginx -n --keep --agree-tos \
|
||||
-m "${CERTBOT_EMAIL}" \
|
||||
-d "${CERTBOT_DOMAINS}"
|
||||
if ! certbot show_account; then
|
||||
certbot register -n \
|
||||
--agree-tos \
|
||||
-m "${CERTBOT_EMAIL}"
|
||||
fi
|
||||
|
||||
for d in $(echo "${CERTBOT_DOMAINS}" | sed 's/,/ /g'); do
|
||||
echo "requesting for $d..."
|
||||
certbot --nginx -n --keep -d "$d"
|
||||
done
|
||||
|
||||
while :; do
|
||||
echo "renewing domains..."
|
||||
|
@ -18,4 +25,4 @@ else
|
|||
echo "skipping certbot due to no domains!"
|
||||
fi &
|
||||
|
||||
exec "$@"
|
||||
exec "$@"
|
Loading…
Reference in a new issue