{% extends "base.html" %} {% block title %}Peers{% endblock %} {% block main %}

Peers

Peers are configured in settings.yaml. self is the loopback peer (this server).

{% for n, p in peers %}

{{ n }} {{ p.base_url }}

auth {{ p.auth.type }}{% if p.auth.client_id %} ({{ p.auth.client_id }}){% endif %} · mode {{ p.mode }} · transactions {{ 'on' if p.use_transactions else 'off' }} · {{ p.subscribe|length }} subscription(s) configured

testing…
{% endfor %} {% endblock %}