add dockerfile and scripts

This commit is contained in:
2024-11-02 13:09:02 +03:00
commit a09ac126d7
5 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
cd /etc/letsencrypt/live/"$DOMAIN"
if [ -f fullchain.pem -a -f privkey.pem ]; then
cat fullchain.pem privkey.pem > /etc/certificates/site.pem
fi