Matrix Docker Ansible eploy
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.
 
 
 

21 lines
710 B

  1. [security]
  2. # default admin user, created on startup
  3. admin_user = {{ matrix_grafana_default_admin_user }}
  4. # default admin password, can be changed before first start of grafana, or in profile settings
  5. admin_password = {{ matrix_grafana_default_admin_password }}
  6. [auth.anonymous]
  7. # enable anonymous access
  8. enabled = {{ matrix_grafana_anonymous_access }}
  9. # specify organization name that should be used for unauthenticated users
  10. org_name = {{ matrix_grafana_anonymous_access_org_name }}
  11. [dashboards]
  12. {% if matrix_synapse_metrics_enabled %}
  13. default_home_dashboard_path = /etc/grafana/dashboards/synapse.json
  14. {% else %}
  15. default_home_dashboard_path = /etc/grafana/dashboards/node-exporter-full.json
  16. {% endif %}