2021-05-19 17:52:58 +00:00
|
|
|
[server]
|
|
|
|
root_url = "https://{{ matrix_server_fqn_grafana }}"
|
|
|
|
|
2021-01-29 08:10:49 +00:00
|
|
|
[security]
|
|
|
|
# default admin user, created on startup
|
2021-04-03 21:41:10 +00:00
|
|
|
admin_user = "{{ matrix_grafana_default_admin_user }}"
|
2021-01-29 08:10:49 +00:00
|
|
|
|
2021-04-03 21:41:10 +00:00
|
|
|
# default admin password, can be changed before first start of grafana, or in profile settings
|
|
|
|
admin_password = """{{ matrix_grafana_default_admin_password }}"""
|
2021-01-29 08:10:49 +00:00
|
|
|
|
2021-04-17 15:33:05 +00:00
|
|
|
# specify content_security_policy to add the Content-Security-Policy header to your requests
|
|
|
|
content_security_policy = "{{ matrix_grafana_content_security_policy }}"
|
|
|
|
|
2021-05-05 16:42:56 +00:00
|
|
|
# specify content security policy template to customized template
|
2021-05-06 07:08:40 +00:00
|
|
|
{% if matrix_grafana_content_security_policy_customized %}
|
2021-06-08 19:18:55 +00:00
|
|
|
content_security_policy_template = """{{ matrix_grafana_content_security_policy_template }}"""
|
2021-05-05 16:42:56 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2022-02-15 05:03:25 +00:00
|
|
|
allow_embedding = {{ matrix_grafana_allow_embedding }}
|
|
|
|
|
2021-01-29 08:10:49 +00:00
|
|
|
[auth.anonymous]
|
|
|
|
# enable anonymous access
|
|
|
|
enabled = {{ matrix_grafana_anonymous_access }}
|
|
|
|
|
|
|
|
# specify organization name that should be used for unauthenticated users
|
2021-04-03 21:41:10 +00:00
|
|
|
org_name = "{{ matrix_grafana_anonymous_access_org_name }}"
|
2021-01-29 08:10:49 +00:00
|
|
|
|
|
|
|
[dashboards]
|
|
|
|
{% if matrix_synapse_metrics_enabled %}
|
|
|
|
default_home_dashboard_path = /etc/grafana/dashboards/synapse.json
|
|
|
|
{% else %}
|
|
|
|
default_home_dashboard_path = /etc/grafana/dashboards/node-exporter-full.json
|
|
|
|
{% endif %}
|