diff options
author | terminaldweller <thabogre@gmail.com> | 2021-01-17 06:18:35 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-01-17 06:18:35 +0000 |
commit | ecef4e3cc9f2d414b817b18a0b9c7303c39e519a (patch) | |
tree | 7d947424ee1bd386a39a6e5a2bb41f4e9aeb4ead /matrix-server/certbot/scripts/renew-certificates.sh | |
parent | fixed the matrix image (diff) | |
download | dockerimages-ecef4e3cc9f2d414b817b18a0b9c7303c39e519a.tar.gz dockerimages-ecef4e3cc9f2d414b817b18a0b9c7303c39e519a.zip |
matrix server docker-compose WIP
Diffstat (limited to 'matrix-server/certbot/scripts/renew-certificates.sh')
-rw-r--r-- | matrix-server/certbot/scripts/renew-certificates.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/matrix-server/certbot/scripts/renew-certificates.sh b/matrix-server/certbot/scripts/renew-certificates.sh new file mode 100644 index 0000000..e46d412 --- /dev/null +++ b/matrix-server/certbot/scripts/renew-certificates.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# Certificates exist +if [ -d /etc/letsencrypt/live/davole.com ]; then + # Check certificates and renew them + certbot renew --http-01-port=380 + + # Concatenate certificates + . /etc/scripts/concatenate-certificates.sh + + # Update certificates in HAProxy + . /etc/scripts/update-haproxy-certificates.sh + +# Certificates don't exist +else + # Execute certificate creation script + . /etc/scripts/create-certificates.sh +fi |