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
This commit is contained in:
parent
f6c53ce538
commit
119a2a36ed
|
@ -2,5 +2,6 @@
|
|||
|
||||
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/cert1.pem
|
||||
cp /etc/letsencrypt/archive/"$CN"/privkey1.pem /var/certs/privkey1.pem
|
||||
cp /etc/letsencrypt/archive/"$CN"/cert1.pem /var/certs/"$CN"-cert1.pem
|
||||
cp /etc/letsencrypt/archive/"$CN"/privkey1.pem /var/certs/"$CN"-privkey1.pem
|
||||
|
||||
|
|
Loading…
Reference in New Issue