Easier to deploy by avoiding merge conflicts in production

This commit is contained in:
Pablo Barton
2021-03-30 09:28:13 -04:00
parent 32e2bea52c
commit d38efa9a9d
9 changed files with 186 additions and 14 deletions

19
certbot.sh Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env bash
source .env;
if [ "$CERTBOT_INIT" = "true" ]
then
certonly \
--webroot \
--webroot-path=/var/www/certbot \
--email ${EMAIL} \
--agree-tos \
--no-eff-email \
-d ${DOMAIN} \
-d www.${DOMAIN}
else
renew \
--webroot \
--webroot-path \
/var/www/certbot
fi