diff options
| author | Jonas Tobias Hopusch <git@jotoho.de> | 2022-02-26 10:39:33 +0100 |
|---|---|---|
| committer | Jonas Tobias Hopusch <git@jotoho.de> | 2022-02-26 10:39:33 +0100 |
| commit | 8ce224e770fc5a33fccb2c127c8d0cb1c09b4fc8 (patch) | |
| tree | fa6f3d4c48ae6bc10276a659cc2683acc13ff4ba | |
| parent | 66f782d5d2327e409c27bece455a6432c51fa0c9 (diff) | |
nextcloud: use fullchain certificate chain instead of individual cert
Exactly the solution proposed by @peteromero in #166
Co-authored-by: peteromero <27361231+peteromero@users.noreply.github.com>
| -rw-r--r-- | nextcloud.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nextcloud.html b/nextcloud.html index 6ce665c..274d854 100644 --- a/nextcloud.html +++ b/nextcloud.html @@ -57,7 +57,7 @@ server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name <strong>example.org</strong>; - ssl_certificate /etc/letsencrypt/live/<strong>example.org</strong>/cert.pem ; + ssl_certificate /etc/letsencrypt/live/<strong>example.org</strong>/fullchain.pem ; ssl_certificate_key /etc/letsencrypt/live/<strong>example.org</strong>/privkey.pem ; root /var/www; |
