ansible role to deploy librenms on debian
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

librenms.conf.j2 446B

1234567891011121314151617
  1. <VirtualHost *:{{librenms_http_port}}>
  2. DocumentRoot "{{librenms_home}}/html/"
  3. ServerName "{{librenms_fqdn}}"
  4. {% if librenms_tls %}
  5. SSLEngine on
  6. SSLCertificateFile "{{nextcloud_cert_file}}"
  7. SSLCertificateKeyFile "{{nextcloud_key_file}}"
  8. {% endif %}
  9. AllowEncodedSlashes NoDecode
  10. <Directory "{{librenms_home}}/html/">
  11. Require all granted
  12. AllowOverride All
  13. Options FollowSymLinks MultiViews
  14. </Directory>
  15. </VirtualHost>