second commit

This commit is contained in:
2025-10-30 09:20:59 +01:00
parent f280cb9e57
commit 6608ae4e88
39 changed files with 3265 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
# Loop through all Let's Encrypt certificates
for CERTIFICATE in `find /etc/letsencrypt/live/* -type d`; do
CERTIFICATE=`basename $CERTIFICATE`
# Combine certificate and private key to single file
cat /etc/letsencrypt/live/$CERTIFICATE/fullchain.pem /etc/letsencrypt/live/$CERTIFICATE/privkey.pem > /etc/haproxy/ssl/$CERTIFICATE.pem
done