diff --git a/roles/base/templates/client_VPN.conf.j2 b/roles/base/templates/client_VPN.conf.j2 new file mode 100644 index 0000000..866df15 --- /dev/null +++ b/roles/base/templates/client_VPN.conf.j2 @@ -0,0 +1,10 @@ +[Interface] +Address = {{ wg_local_ip }} +ListenPort = 41475 +PostUp = wg set %i private-key /etc/wireguard/privatekey + +[Peer] +PublicKey = {{ wg_server_pubkey }} +Endpoint = {{ wg_endpoint }} +AllowedIPs = 192.168.3.0/24, 192.168.1.0/24 +PersistentKeepalive = 25 \ No newline at end of file