From f6cdeabe2f57b97299308e16486958ed122315b9 Mon Sep 17 00:00:00 2001 From: hc Date: Sat, 7 Feb 2026 12:15:01 +0000 Subject: initial commit --- wg0.conf.example | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 wg0.conf.example (limited to 'wg0.conf.example') diff --git a/wg0.conf.example b/wg0.conf.example new file mode 100644 index 0000000..893b9ee --- /dev/null +++ b/wg0.conf.example @@ -0,0 +1,17 @@ +# Download this from: https://mullvad.net/en/account/wireguard-config +# 1. Log into your Mullvad account +# 2. Go to WireGuard configuration +# 3. Generate a key and download a config file +# 4. Rename the downloaded file to wg0.conf and place it in this directory +# +# It will look something like this: + +[Interface] +PrivateKey = YOUR_PRIVATE_KEY_HERE +Address = 10.x.x.x/32,fc00:bbbb:bbbb:bb01::x:xxxx/128 +DNS = 10.64.0.1 + +[Peer] +PublicKey = SERVER_PUBLIC_KEY_HERE +AllowedIPs = 0.0.0.0/0,::0/0 +Endpoint = xxx.xxx.xxx.xxx:51820 -- cgit