¡Únete a Nuestra Comunidad en Discord!

Haz clic en el botón de abajo para unirte a nuestra nueva comunidad de Discord.

Unirse a Discord
WireGuard VPN

WireGuard VPN

Fast, modern, secure VPN.

Version 1.0 app 1-Click Install
Deploy Now
Wireguard

Getting started

  1. Go to https://my.cubepath.com/deploy
  2. Select a VPS plan
  3. Under Operating System, choose "WireGuard VPN"
  4. Click Deploy

Once the deployment is complete (~5 minutes, may vary depending on machine size), access http://your-server-ip:51821 to manage your VPN.

Deploy via CubePath Cloud API

Via CubeCLI

pipx install git+https://github.com/CubePathInc/cubecli.git

cubecli vps create \
  --name wireguard-vpn \
  --plan gp.nano \
  --template "WireGuard" \
  --location us-mia-1 \
  --project <project-id>

Via API

curl -X POST https://api.cubepath.com/v1/vps \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "wireguard-vpn",
    "plan": "gp.nano",
    "template": "wireguard",
    "location": "us-mia-1"
  }'

Technical information

Web access credentials:
- URL: http://YOUR-IP:51821
- Password: Auto-generated during installation

Get your password:

cat /root/wg-easy-password.txt

Installed software:
- Docker + WG-Easy (latest)
- WireGuard kernel module

Locations:
- Installation: /opt/wg-easy/
- Configuration: /opt/wg-easy/

Ports:
- 22 (SSH)
- 51820 (UDP - WireGuard)
- 51821 (TCP - Web UI)

Useful commands

# Check status
docker ps

# View logs
docker logs wg-easy

# Restart WireGuard
docker restart wg-easy

# View connected clients
docker exec wg-easy wg show

Links