访问控制台
通过 SSH 隧道本地访问:
ssh root@<your-server-ip> -N -L 8000:127.0.0.1:8000
然后在浏览器中打开: http://localhost:8000/ (admin interface)
Web 登录凭据: /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
主 WireGuard 服务器配置文件位于 /root/super/configs/wireguard/wg0.conf.
其中包含首个自动创建的对等端(客户端)。
Running /root/super/virtual_install.sh 自动配置 WireGuard 对等端,并生成凭据、令牌和二维码。