Add some whitespace

This commit is contained in:
Wojciech Kozlowski 2022-12-09 01:21:30 +01:00
parent ad6a9c1396
commit 8004b13c9e

View File

@ -10,6 +10,7 @@ ListenPort = {{ vpn_bridge_wg0_port }}
PublicKey = {{ client.public_key }} PublicKey = {{ client.public_key }}
PresharedKey = {{ vpn_bridge_wg0_preshared_key }} PresharedKey = {{ vpn_bridge_wg0_preshared_key }}
AllowedIPs = {{ vpn_bridge_wg0_subnet }},{{ client.subnet }} AllowedIPs = {{ vpn_bridge_wg0_subnet }},{{ client.subnet }}
{% endfor %} {% endfor %}
{% elif vpn_bridge_role == "client" %} {% elif vpn_bridge_role == "client" %}
[Peer] [Peer]
@ -18,4 +19,5 @@ PresharedKey = {{ vpn_bridge_wg0_preshared_key }}
Endpoint = {{ vpn_bridge_wg0_server_address }}:{{ vpn_bridge_wg0_port }} Endpoint = {{ vpn_bridge_wg0_server_address }}:{{ vpn_bridge_wg0_port }}
AllowedIPs = 0.0.0.0/0 AllowedIPs = 0.0.0.0/0
PersistentKeepalive = 15 PersistentKeepalive = 15
{% endif %} {% endif %}