mirror of
https://github.com/linuxserver/docker-wireguard
synced 2024-11-08 07:10:25 +00:00
10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
[Interface]
|
|
Address = ${CLIENT_IP}
|
|
PrivateKey = $(cat /config/${PEER_ID}/privatekey-${PEER_ID})
|
|
ListenPort = 51820
|
|
DNS = ${PEERDNS}
|
|
|
|
[Peer]
|
|
PublicKey = $(cat /config/server/publickey-server)
|
|
Endpoint = ${SERVERURL}:${SERVERPORT}
|
|
AllowedIPs = ${ALLOWEDIPS} |