diff options
author | Horsemans <horsemans@horsemans.online> | 2019-03-31 16:58:28 +0000 |
---|---|---|
committer | Horsemans <horsemans@horsemans.online> | 2019-03-31 16:58:28 +0000 |
commit | 10a96825960fc2d5465e9b4992c33941c8bd0c64 (patch) | |
tree | f7f704ea575747f55de6e71dd9b67ec70e6dcc4c /installation | |
parent | 6db792124ba5269a6d134e2778779261f44bd635 (diff) | |
download | pleroma-10a96825960fc2d5465e9b4992c33941c8bd0c64.tar.gz pleroma-10a96825960fc2d5465e9b4992c33941c8bd0c64.zip |
ssl_trusted_certificate should point to chain.pem if we're demonstrating LetsEncrypt: https://community.letsencrypt.org/t/howto-ocsp-stapling-for-nginx/13611/5
Diffstat (limited to 'installation')
-rw-r--r-- | installation/pleroma.nginx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index a24bb0e61..a0e91f464 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -31,7 +31,7 @@ server { listen 443 ssl http2; ssl_session_timeout 5m; - ssl_trusted_certificate /etc/letsencrypt/live/example.tld/fullchain.pem; + ssl_trusted_certificate /etc/letsencrypt/live/example.tld/chain.pem; ssl_certificate /etc/letsencrypt/live/example.tld/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/example.tld/privkey.pem; |