WireGuard VPN on Your Seedbox #
WireGuard is a modern VPN protocol — faster, simpler, and more secure than OpenVPN. When installed on your seedbox, it creates an encrypted tunnel so all your internet traffic routes through the seedbox’s IP.
Installing WireGuard #
- Dashboard → Apps → WireGuard → Install
- Download the generated config file (.conf) from your dashboard
Setup by Platform #
iPhone/iPad #
- Install “WireGuard” from the App Store
- Open the app → tap + → Create from QR code or Import from file
- Import your .conf file or scan the QR code from your dashboard
- Toggle the VPN on
Windows #
- Download WireGuard from wireguard.com/install
- Open → Import tunnel(s) from file → select your .conf file
- Click Activate
macOS #
- Install WireGuard from the Mac App Store
- Open → Import tunnel(s) from file → select .conf
- Allow the VPN configuration when prompted
- Toggle on
Linux #
sudo apt install wireguardnsudo cp your-config.conf /etc/wireguard/wg0.confnsudo wg-quick up wg0
Android #
- Install WireGuard from Google Play
- Tap + → Import from file or QR code
- Toggle on
Split Tunneling #
Split tunneling routes only specific traffic through the VPN while the rest uses your normal connection. In your .conf file, change AllowedIPs from 0.0.0.0/0 (all traffic) to specific IP ranges.