BREAKING CHANGE: get a wildcard for the main domain sutty/sutty#13159

This commit is contained in:
f 2023-04-20 15:20:26 -03:00
parent 4b783cb9f1
commit f545ef606f

View file

@ -46,22 +46,18 @@ case $1 in
touch "${updated}"
;;
bootstrap)
for site in ${SUTTY} api.${SUTTY}; do
test -d "/etc/letsencrypt/live/${site}" && exit 0
test -d "/etc/letsencrypt/live/${SUTTY}" && exit 0
# Get the certificate for the domain, the webserver will need
# access to this directory
/usr/bin/certbot certonly --email "certbot@${SUTTY}" \
--webroot \
--agree-tos \
--webroot-path /var/lib/letsencrypt \
-d "${site}"
# Get a single certificate for the whole domain
/usr/bin/certbot \
-a dns-njalla \
--dns-njalla-credentials /etc/letsencrypt/njalla.ini \
--email "certbot@${SUTTY}" \
--agree-tos \
-d "${SUTTY}" \
-d "*.${SUTTY}"
cd /etc/letsencrypt/live
ln -s ${SUTTY} default
touch "${updated}"
done
touch "${updated}"
;;
prune)