From fa568e13d04c0aacdb29ca252b783f1dcdb6bf23 Mon Sep 17 00:00:00 2001 From: Ahmed Date: Sun, 14 Jun 2026 01:44:23 +0300 Subject: init: moving to git.gumx.cc --- vpn.gumx.cc/index.html | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 vpn.gumx.cc/index.html (limited to 'vpn.gumx.cc/index.html') diff --git a/vpn.gumx.cc/index.html b/vpn.gumx.cc/index.html new file mode 100644 index 0000000..c2a3ce3 --- /dev/null +++ b/vpn.gumx.cc/index.html @@ -0,0 +1,65 @@ + + + + + +vpn.gumx.cc + + + +
+

gumx / vpn

+
+
+

WireGuard VPN. Endpoint: wk.fo: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   = wk.fo:51820
+AllowedIPs = 0.0.0.0/0
+PersistentKeepalive = 25
+
+ + + -- cgit v1.2.3