blackbirdchess-docker-dev/certbot/run-certbot.sh
Lakhveer Bawa 119a2a36ed
Update certbot run-certbot.sh to allow it work with multiple domains
Previously, running docker-compose up -d certbot would overwrite the previous certificate stored in /var/certs

Now: the certificates will be stored with the filename containing domain name
2020-09-29 11:06:48 +05:30

8 lines
281 B
Bash

#!/bin/bash
letsencrypt certonly --webroot -w /var/www/letsencrypt -d "$CN" --agree-tos --email "$EMAIL" --non-interactive --text
cp /etc/letsencrypt/archive/"$CN"/cert1.pem /var/certs/"$CN"-cert1.pem
cp /etc/letsencrypt/archive/"$CN"/privkey1.pem /var/certs/"$CN"-privkey1.pem