14 lines
325 B
Text
14 lines
325 B
Text
|
[Interface]
|
||
|
PrivateKey = {{ private_key }}
|
||
|
ListenPort = {{ listen_port }}
|
||
|
Address = {{ wireguard_address }}
|
||
|
|
||
|
{% for peer in peers %}
|
||
|
[Peer]
|
||
|
PublicKey = {{ peer.public_key }}
|
||
|
{%- if peer.endpoint is defined %}
|
||
|
Endpoint = {{ peer.endpoint }}
|
||
|
{%- endif %}
|
||
|
AllowedIPs = {{ peer.allowed_ips}}
|
||
|
PersistentKeepalive = 25
|
||
|
{% endfor %}
|