1234567891011121314151617 |
- <VirtualHost *:{{librenms_http_port>
- DocumentRoot "{{librenms_home}}/html/"
- ServerName "{{librenms_fqdn}}"
-
- {% if librenms_tls %}
- SSLEngine on
- SSLCertificateFile "{{nextcloud_cert_file}}"
- SSLCertificateKeyFile "{{nextcloud_key_file}}"
- {% endif %}
-
- AllowEncodedSlashes NoDecode
- <Directory "{{librenms_home}}/html/">
- Require all granted
- AllowOverride All
- Options FollowSymLinks MultiViews
- </Directory>
- </VirtualHost>
|