From 9d41301200e05a9fe30790dd791a7914f20a66b7 Mon Sep 17 00:00:00 2001 From: Kevin Krumm Date: Sat, 28 Oct 2017 07:09:52 -0500 Subject: [PATCH] ssl config fix for centos apache (#7562) * docs: ssl config fix for cent os apache fixed line syntax error. * Update SSL-Configuration.md accident did not mean to remove that. --- doc/Support/SSL-Configuration.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/Support/SSL-Configuration.md b/doc/Support/SSL-Configuration.md index 1c78072f54..d5589e713a 100644 --- a/doc/Support/SSL-Configuration.md +++ b/doc/Support/SSL-Configuration.md @@ -77,18 +77,17 @@ Your VirtualHost for 443 will need to look something like this for LibreNMS SSLCertificateFile /etc/pki/tls/certs/ca.crt SSLCertificateKeyFile /etc/pki/tls/private/ca.key - DocumentRoot /opt/librenms/html/ AllowOverride All - AllowEncodedSlashes NoDecode Require all granted Options FollowSymLinks MultiViews DocumentRoot /opt/librenms/html/ + AllowEncodedSlashes NoDecode ServerName librenms.example.com CustomLog /opt/librenms/logs/access_log combined ErrorLog /opt/librenms/logs/error_log - + ``` #### Step 2 Then restart Apache `sudo systemctl restart httpd`