Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

21 行
719 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 %}