wsl2 support for generated configs

This commit is contained in:
Sammers21 2024-01-01 06:25:39 +03:00
parent 5817300bb1
commit 7c3af8a84d

View file

@ -8,6 +8,6 @@ DNS = {{ wireguard_dns_servers }}
[Peer]
PublicKey = {{ lookup('file', wireguard_pki_path + '/public/' + IP_subject_alt_name) }}
PresharedKey = {{ lookup('file', wireguard_pki_path + '/preshared/' + item.1) }}
AllowedIPs = 0.0.0.0/0,::/0
AllowedIPs = ::/128, 0.0.0.0/1, 128.0.0.0/1
Endpoint = {{ IP_subject_alt_name }}:{{ wireguard_port }}
{{ 'PersistentKeepalive = ' + wireguard_PersistentKeepalive|string if wireguard_PersistentKeepalive > 0 else '' }}