aboutsummaryrefslogtreecommitdiffstats
path: root/matrix-server/certbot/scripts/renew-certificates.sh
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-01-17 06:18:35 +0000
committerterminaldweller <thabogre@gmail.com>2021-01-17 06:18:35 +0000
commitecef4e3cc9f2d414b817b18a0b9c7303c39e519a (patch)
tree7d947424ee1bd386a39a6e5a2bb41f4e9aeb4ead /matrix-server/certbot/scripts/renew-certificates.sh
parentfixed the matrix image (diff)
downloaddockerimages-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.sh18
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