diff options
author | terminaldweller <thabogre@gmail.com> | 2021-02-19 08:02:22 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-02-19 08:02:22 +0000 |
commit | 28ed4f737330a1ec42b5493a24faa9fd13eefe91 (patch) | |
tree | d4b974facc20e84c1f8e06423aed0012b36649e1 /matrix-server/certbot/scripts/create-certificates.sh | |
parent | matrix server update...almost working...WIP (diff) | |
download | dockerimages-28ed4f737330a1ec42b5493a24faa9fd13eefe91.tar.gz dockerimages-28ed4f737330a1ec42b5493a24faa9fd13eefe91.zip |
update, debugging the haproxy config
Diffstat (limited to 'matrix-server/certbot/scripts/create-certificates.sh')
-rw-r--r-- | matrix-server/certbot/scripts/create-certificates.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/matrix-server/certbot/scripts/create-certificates.sh b/matrix-server/certbot/scripts/create-certificates.sh index 1bc1094..804e542 100644 --- a/matrix-server/certbot/scripts/create-certificates.sh +++ b/matrix-server/certbot/scripts/create-certificates.sh @@ -2,9 +2,14 @@ echo "running create certs..." # Request certificates certbot certonly --standalone \ - --non-interactive --agree-tos --email thabogre@gmail.com --http-01-port=380 \ + --non-interactive \ + --agree-tos \ + --email thabogre@gmail.com \ + --http-01-port=380 \ --cert-name terminaldweller.com \ - -d terminaldweller.com + -d terminaldweller.com,mail.terminaldweller.com,www.terminaldweller.com,matrix.terminaldweller.com,element.terminaldweller.com,blog.terminaldweller.com \ + --dry-run + # --server https://acme-v02.api.letsencrypt.org/directory \ # Concatenate certificates . /etc/scripts/concatenate-certificates.sh # Update certificates in HAProxy |