Add container with wireguard config, improve general setup with poetry Reviewed-on: https://gitea.pstruebi.xyz/auracaster/bumble-auracast/pulls/5
12 lines
321 B
Plaintext
12 lines
321 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)
|
|
PresharedKey = $(cat /config/${PEER_ID}/presharedkey-${PEER_ID})
|
|
Endpoint = ${SERVERURL}:${SERVERPORT}
|
|
AllowedIPs = ${ALLOWEDIPS}
|