mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-02-15 04:32:15 +00:00
7 lines
158 B
Bash
7 lines
158 B
Bash
#!/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
|