Hi All,
I’ve enable the HTTPS for LibreNMS and got the error “You don’t have permission to access /login on this server.” but the HTTP still work as normal
Below is my VirtualHost setting. Did someone have the same problem and could how to resolve?
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
<Directory “/opt/librenms/html/”>
AllowOverride All
Require all granted
Options FollowSymLinks MultiViews
</ Directory>
DocumentRoot /opt/librenms/html/
AllowEncodedSlashes NoDecode
ServerName XXXX
CustomLog /opt/librenms/logs/access_log combined
ErrorLog /opt/librenms/logs/error_log
</ VirtualHost>