Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

34 linhas
1.2 KiB

  1. [server]
  2. root_url = "https://{{ matrix_server_fqn_grafana }}"
  3. [security]
  4. # default admin user, created on startup
  5. admin_user = "{{ matrix_grafana_default_admin_user }}"
  6. # default admin password, can be changed before first start of grafana, or in profile settings
  7. admin_password = """{{ matrix_grafana_default_admin_password }}"""
  8. # specify content_security_policy to add the Content-Security-Policy header to your requests
  9. content_security_policy = "{{ matrix_grafana_content_security_policy }}"
  10. # specify content security policy template to customized template
  11. {% if matrix_grafana_content_security_policy_customized %}
  12. content_security_policy_template = """{{ matrix_grafana_content_security_policy_template }}"""
  13. {% endif %}
  14. allow_embedding = {{ matrix_grafana_allow_embedding }}
  15. [auth.anonymous]
  16. # enable anonymous access
  17. enabled = {{ matrix_grafana_anonymous_access }}
  18. # specify organization name that should be used for unauthenticated users
  19. org_name = "{{ matrix_grafana_anonymous_access_org_name }}"
  20. [dashboards]
  21. {% if matrix_synapse_metrics_enabled %}
  22. default_home_dashboard_path = /etc/grafana/dashboards/synapse.json
  23. {% else %}
  24. default_home_dashboard_path = /etc/grafana/dashboards/node-exporter-full.json
  25. {% endif %}