diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-05-06 16:20:47 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-05-10 01:09:41 +0300 |
commit | 38541d99ea9724a0f0d7a0642fe381e2237f18fd (patch) | |
tree | 90688d45c20ae07dab0b0b3b2a8fbf99939b7025 | |
parent | a74c31ff639f4e3133ac5442125403454db88cee (diff) | |
download | pleroma-38541d99ea9724a0f0d7a0642fe381e2237f18fd.tar.gz |
apache chain issue fix
-rw-r--r-- | installation/pleroma-apache.conf | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/installation/pleroma-apache.conf b/installation/pleroma-apache.conf index b5640ac3d..0d627f2d7 100644 --- a/installation/pleroma-apache.conf +++ b/installation/pleroma-apache.conf @@ -32,9 +32,8 @@ CustomLog ${APACHE_LOG_DIR}/access.log combined <VirtualHost *:443> SSLEngine on - SSLCertificateFile /etc/letsencrypt/live/${servername}/cert.pem + SSLCertificateFile /etc/letsencrypt/live/${servername}/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/${servername}/privkey.pem - SSLCertificateChainFile /etc/letsencrypt/live/${servername}/fullchain.pem # Mozilla modern configuration, tweak to your needs SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1 |