SPR VPN

Hardened open-source VPN and DNS router for secure, self-hosted network control.

Accessing the Dashboard

Local via SSH tunnel:

ssh root@<your-server-ip> -N -L 8000:127.0.0.1:8000

Then open in your browser: http://localhost:8000/ (admin interface)

Web login credentials: /root/super/configs/auth/auth_users.json

API token: /root/super/configs/auth/auth_tokens.json

Directory Layout

/root/super/
 ├── docker-compose-virt.yml         # Docker stack definition
 ├── configs/
 │   ├── auth/
 │   │   ├── auth_users.json         # Web login credentials
 │   │   └── auth_tokens.json        # API tokens
 │   ├── wireguard/
 │   │   └── wg0.conf                # WireGuard peers and server
 │   ├── dhcp/
 │   │   └── coredhcp.yml            # DHCP config
 │   ├── base/
 │   │   └── config.sh               # Core environment settings
 │   └── scripts/                    # Helper scripts
 ├── state/
 │   └── dns/block_rules.json        # DNS ad/malware blocklists
 └── logs/                           # Service logs

WireGuard Configuration

The main WireGuard server configuration is located at /root/super/configs/wireguard/wg0.conf.

It includes the first auto-created peer (client).

Running /root/super/virtual_install.sh automatically sets up a WireGuard peer, generates credentials, tokens, and a QR code.

 

Application Details