{% include "nav.html" %}
{% if message %}
{{ message }}
{% endif %}

Configuration

{{ config_path }}

{% if editable %}
{% if can_hot_reload %} {% endif %} Backend changes still require a restart.
{% else %}

Configuration file is read-only (no file found or not writable).

{% endif %}
{% if sections %}

Loaded sections

hot-reloadable requires restart
{% for key, section in sections.items() %}
{{ section.label }} ({{ section.names|length }})
{% if section.names %}
    {% for name in section.names %}
  • {{ name }}
  • {% endfor %}
{% else %}

none defined

{% endif %}
{% endfor %}
{% endif %}