diff --git a/client-wg0.conf b/client-wg0.conf new file mode 100644 index 0000000..9e8068c --- /dev/null +++ b/client-wg0.conf @@ -0,0 +1,17 @@ +[Interface] +# Replace with the client's private key +PrivateKey = CLIENT_PRIVATE_KEY +# Client's VPN IP address +Address = 10.0.0.2/24 +# Set DNS server (optional) +DNS = 8.8.8.8 + +[Peer] +# Server's public key +PublicKey = SERVER_PUBLIC_KEY +# Server's public IP address and WireGuard port +Endpoint = SERVER_PUBLIC_IP:51820 +# Route all traffic through the VPN +AllowedIPs = 0.0.0.0/0 +# Keep the connection alive (useful if behind NAT) +PersistentKeepalive = 25 \ No newline at end of file