linuxserver-mods/wireguard-ipv6/root/defaults/peer.conf
Michel Roux 351b6f2ca4
Some checks failed
dl / skip-chown (push) Failing after 18s
dl / wireguard-ipv6 (push) Failing after 15s
feat: 🎉 initial commit
2024-05-15 20:36:19 +02:00

12 lines
339 B
Plaintext

[Interface]
Address = ${CLIENT_IPV4}, ${CLIENT_IPV6}
PrivateKey = $(cat /config/${PEER_ID}/privatekey-${PEER_ID})
ListenPort = 51820
DNS = ${PEERDNS}
[Peer]
PublicKey = $(cat /config/server/publickey-server)
PresharedKey = $(cat /config/${PEER_ID}/presharedkey-${PEER_ID})
Endpoint = ${SERVERURL}:${SERVERPORT}
AllowedIPs = ${ALLOWEDIPS}