www
This commit is contained in:
parent
5d3d7ce80e
commit
dc5856cb03
1 changed files with 12 additions and 9 deletions
21
certbot.sh
21
certbot.sh
|
@ -36,16 +36,19 @@ case $1 in
|
|||
domain="$(echo "${name}" | sed "s/[^\.]$/&.${SUTTY}/")"
|
||||
domain="${domain%.}"
|
||||
|
||||
# Skip already existing domains
|
||||
test -d "/etc/letsencrypt/live/${domain}" && continue
|
||||
# Generate a certificate for www also
|
||||
for d in ${domain} www.${domain}; do
|
||||
# Skip already existing domains
|
||||
test -d "/etc/letsencrypt/live/${d}" && continue
|
||||
|
||||
# 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 "${domain}"
|
||||
# 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 "${d}"
|
||||
done
|
||||
done
|
||||
|
||||
# Fix permissions, users in group ssl have read access
|
||||
|
|
Loading…
Reference in a new issue