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 +++++++++++++++++++ vpn.gumx.cc/index.html | 15 ++++++++++++--- vpn.gumx.cc/meta | 2 ++ 3 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 vpn.gumx.cc/body.html create mode 100644 vpn.gumx.cc/meta (limited to 'vpn.gumx.cc') 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
diff --git a/vpn.gumx.cc/index.html b/vpn.gumx.cc/index.html index c2a3ce3..0d33729 100644 --- a/vpn.gumx.cc/index.html +++ b/vpn.gumx.cc/index.html @@ -2,6 +2,7 @@ + vpn.gumx.cc @@ -31,7 +36,7 @@ a { color: inherit; }

gumx / vpn

-

WireGuard VPN. Endpoint: wk.fo:51820. Access is by invitation.

+

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. @@ -47,19 +52,23 @@ DNS = 1.1.1.1 [Peer] PublicKey = <server public key> -Endpoint = wk.fo:51820 +Endpoint = vpn.gumx.cc:51820 AllowedIPs = 0.0.0.0/0 PersistentKeepalive = 25 +
+ diff --git a/vpn.gumx.cc/meta b/vpn.gumx.cc/meta new file mode 100644 index 0000000..3c1ebbc --- /dev/null +++ b/vpn.gumx.cc/meta @@ -0,0 +1,2 @@ +TITLE="vpn.gumx.cc" +BREADCRUMB="vpn" -- cgit v1.2.3