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/create-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/create-certificates.sh')
-rw-r--r-- | matrix-server/certbot/scripts/create-certificates.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/matrix-server/certbot/scripts/create-certificates.sh b/matrix-server/certbot/scripts/create-certificates.sh new file mode 100644 index 0000000..5fb6345 --- /dev/null +++ b/matrix-server/certbot/scripts/create-certificates.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# Request certificates +certbot certonly --standalone \ + --non-interactive --agree-tos --email info@davole.com --http-01-port=380 \ + --cert-name davole.com \ + -d davole.com +# Concatenate certificates +. /etc/scripts/concatenate-certificates.sh +# Update certificates in HAProxy +. /etc/scripts/update-haproxy-certificates.sh |