diff --git a/templates/wireguard/wireguard_manage_server.html b/templates/wireguard/wireguard_manage_server.html index eb2bf3f..ea787de 100644 --- a/templates/wireguard/wireguard_manage_server.html +++ b/templates/wireguard/wireguard_manage_server.html @@ -1,9 +1,10 @@ {% extends 'base.html' %} {% load crispy_forms_tags %} +{% load i18n %} {% block content %}
+ {% blocktrans %} + Optional name used only for display in the web interface. + {% endblocktrans %} +
++ {% blocktrans %} + Interval used to refresh WireGuard status information in the web UI. + {% endblocktrans %} +
+
+ {% blocktrans %}
+ Public hostname or IP address and UDP port used by peers to connect.
+
+ The listen port must be exposed and mapped in your Docker compose (YAML) file.
+ {% endblocktrans %}
+
+ {% blocktrans %}
+ WireGuard private and public keys for this interface.
+
+ The private key must remain secret.
+ Changing it requires updating all peer configurations.
+ {% endblocktrans %}
+
+ {% blocktrans %} + Internal IP address and netmask used by the WireGuard interface. + {% endblocktrans %} +
+
+ {% blocktrans %}
+ DNS servers pushed to peers.
+
+ Using the internal IP as primary DNS enables internal name resolution
+ and DNS filtering.
+ {% endblocktrans %}
+
+ {% blocktrans %}
+ Enforces routing rules defined by routing templates using firewall rules.
+
+ Peers with a default route (0.0.0.0/0) are not restricted.
+
+ Note: depending on the number of routes and peers, this option may generate
+ a large number of firewall rules.
+ {% endblocktrans %}
+