@shOoObz@sevendeadlytits I always ask to work in with people who are on machines I want to use. I’ve had maybe 1 no in like 10 years. I hate waiting lol
I hate monolith speak and generalizations with my whole being. You aren’t smart enough to make the point specific so you take the easy route use a broad brush
Watching Outlast: The Jungle and these people are so stupid not doing the trade. They could have had all they needed but greed will always be the death of humans.
Pouca gente sabe o motivo real de nenhum barco chegar perto. Quando o gelo cai, blocos gigantescos que estavam escondidos submersos disparam para a superfície com uma força absurda pela pressão da água, empurrando tudo no caminho. O perigo real sempre vem de baixo.
Commercial VPNs route your traffic through shared IP addresses. thousands of users on the same IP. those IPs are public, known, and listed. The government can block them the same way Netflix blocks them, one IP list. done.
A self-hosted VPN is different.
Your server. your IP. nobody else's traffic on it. there is no list to add it to. the government would have to identify and block your specific home address or VPS individually. that is not scalable. that is not what mass VPN bans do.
here's how to build one in under 10 minutes.
you need:
— a $5/month VPS (DigitalOcean, Hetzner, Vultr — any will work)
— Docker installed
— 10 minutes
step 1: get a VPS. pick any provider. Ubuntu 22.04. the cheapest plan works.
step 2: install Docker on it.
curl -fsSL https://get[.]docker[.]com | sh
step 3: run WG-Easy. one command:
docker run -d \
--name wg-easy \
-e WG_HOST=YOUR_SERVER_IP \
-e PASSWORD=your_password \
-p 51820:51820/udp \
-p 51821:51821/tcp \
--cap-add=NET_ADMIN \
--cap-add=SYS_MODULE \
--sysctl="net.ipv4.ip_forward=1" \
--restart unless-stopped \
ghcr[.]io/wg-easy/wg-easy
step 4: open your browser. go to YOUR_SERVER_IP:51821. log in. click "new client." download the config. import it into the WireGuard app on your phone or laptop.
that's it. you now have a private VPN that:
— nobody else uses
— isn't on any blocklist
— costs $5 a month
— logs nothing unless you tell it to
— uses modern cryptography the NSA currently cannot break
WireGuard is built into the Linux kernel. 4,000 lines of code. fully audited. faster than OpenVPN. no configuration mistakes that accidentally weaken your encryption.
They cannot ban your server.