{% extends 'account_layout.html' %} {% load static %} {% load i18n %} {% block title %}WireGuard{% endblock %} {% block account_content %}

WireGuard

{% blocktrans trimmed %} This page lets you manage WireGuard clients. Each can only have one concurrent connection. {% endblocktrans %}
{% blocktrans trimmed %} WireGuard has better performances than OpenVPN, but is not as widely supported. {% endblocktrans %}

{% trans "Your Devices" %} {{ keys|length }}/{{ config.WIREGUARD_MAX_PEERS }}

{% trans "New Device" %}

{% if keys %} {% for peer in keys %} {% endfor %}
{% trans "Public Key" %} {% trans "Name" %}
{{ peer.public_key }} {{peer.name}}
{% csrf_token %}

Configuration

{% trans 'You can try an alternative server port if 51820 is blocked.' %}

{% endif %} {% endblock %}