nginx-certbot/scripts/run_certbot.sh

51 lines
1.2 KiB
Bash
Raw Normal View History

2016-09-21 23:35:19 +00:00
echo "Running certbot for domains $DOMAINS"
get_certificate() {
# Gets the certificate for the domain(s) CERT_DOMAINS (a comma separated list)
# The certificate will be named after the first domain in the list
# To work, the following variables must be set:
# - CERT_DOMAINS : comma separated list of domains
# - EMAIL
# - args
local d=${CERT_DOMAINS//,*/} # read first domain
echo "Getting certificate for $CERT_DOMAINS"
certbot certonly --agree-tos --renew-by-default -n \
--text --server https://acme-v01.api.letsencrypt.org/directory \
--email $EMAIL -d $CERT_DOMAINS $args
ec=$?
echo "certbot exit code $ec"
if [ $ec -eq 0 ]
then
2017-01-02 05:34:59 +00:00
echo "Certificate obtained for $CERT_DOMAINS! Your new certificate - named $d - /etc/letsencrypt"
else
echo "Cerbot failed for $CERT_DOMAINS. Check the logs for details."
fi
}
2016-09-21 23:35:19 +00:00
args=""
if [ $WEBROOT ]
then
args=" --webroot -w $WEBROOT"
else
args=" --standalone --standalone-supported-challenges http-01"
2016-09-21 23:35:19 +00:00
fi
2016-09-22 00:55:28 +00:00
if $DEBUG
then
args=$args" --debug"
fi
2017-01-02 05:34:59 +00:00
set -x
if $SEPARATE
2016-09-21 23:35:19 +00:00
then
2016-09-22 00:55:28 +00:00
for d in $DOMAINS
do
CERT_DOMAINS=$d
get_certificate
2016-09-22 00:55:28 +00:00
done
2016-09-21 23:35:19 +00:00
else
CERT_DOMAINS=${DOMAINS// /,}
get_certificate
2016-09-21 23:35:19 +00:00
fi