1
0
Fork 0
mirror of https://github.com/ThomasGsp/HyperProxmox.git synced 2025-02-15 04:32:15 +00:00
HyperProxmox/system/BASE_SOFT/LETSENCRYPT/scripts/renew.sh

8 lines
158 B
Bash
Raw Normal View History

2017-10-21 20:04:42 +00:00
#!/usr/bin/env bash
for SITE in $(ls /etc/letsencrypt/live/)
do
cd /etc/letsencrypt/live/$SITE
cat fullchain.pem privkey.pem > /opt/certbot/$SITE.pem
done