Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

30 строки
1.1 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. default_home_dashboard_path = {{ matrix_grafana_default_home_dashboard_path }}