From 307ff4912bac1095ebf382d70241f19409b2f8b8 Mon Sep 17 00:00:00 2001 From: Ahmed Date: Sun, 14 Jun 2026 16:30:47 +0300 Subject: add: templating --- vpn.gumx.cc/body.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 vpn.gumx.cc/body.html (limited to 'vpn.gumx.cc/body.html') diff --git a/vpn.gumx.cc/body.html b/vpn.gumx.cc/body.html new file mode 100644 index 0000000..49fb589 --- /dev/null +++ b/vpn.gumx.cc/body.html @@ -0,0 +1,19 @@ +

WireGuard VPN. Endpoint: vpn.gumx.cc:51820. Access is by invitation.

+

setup

+
    +
  1. Generate a keypair: wg genkey | tee private.key | wg pubkey > public.key
  2. +
  3. Send your public key to hi@gumx.cc
  4. +
  5. Receive your assigned IP (10.0.0.x/32) and the server public key
  6. +
  7. Create /etc/wireguard/wg0.conf and bring it up with wg-quick up wg0
  8. +
+

example client config

+
[Interface]
+PrivateKey = <your private key>
+Address    = 10.0.0.x/32
+DNS        = 1.1.1.1
+
+[Peer]
+PublicKey  = <server public key>
+Endpoint   = vpn.gumx.cc:51820
+AllowedIPs = 0.0.0.0/0
+PersistentKeepalive = 25
-- cgit v1.2.3