Files
runtipi/apps/rego-tunnel/config.json
alexz 8523c79999
Some checks failed
Test / test (push) Has been cancelled
refactor(rego-tunnel): Replace QEMU VM with native Docker Cisco VPN
- Switch from linux-vm QEMU image to cisco-vpn native Docker image
- Change port from 8006 to 6080 (noVNC)
- Remove VM-specific config (RAM, CPU, bridges, taps, QEMU)
- Add VPN credential fields (email, password, TOTP, VPN host)
- Add auto-connect and VNC password options
- Update description.md with new documentation
- Simplify Docker requirements (no /dev/kvm needed)

Benefits:
- No QEMU/VM overhead - runs natively in Docker
- Full Cisco Secure Client 5.1.14.145 with GUI
- Auto-login with TOTP support
- Auto-reconnect on disconnect

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 19:47:11 +00:00

81 lines
2.3 KiB
JSON
Executable File

{
"name": "Rego Tunnel",
"available": true,
"port": 6080,
"exposable": true,
"dynamic_config": true,
"id": "rego-tunnel",
"description": "Cisco Secure Client VPN in Docker with noVNC web UI for accessing Rego environments. No VM overhead.",
"tipi_version": 4,
"version": "5.1.14.145",
"categories": ["utilities"],
"short_desc": "Cisco VPN tunnel to Rego environments (native Docker, no VM)",
"author": "alexz",
"source": "https://git.alexzaw.dev/alexz/runtipi",
"form_fields": [
{
"type": "email",
"label": "VPN Email",
"hint": "Email address for VPN SSO login",
"placeholder": "your-email@company.com",
"required": false,
"env_variable": "VPN_EMAIL",
"default": ""
},
{
"type": "password",
"label": "VPN Password",
"hint": "Password for VPN SSO login. Leave empty for manual login via noVNC.",
"placeholder": "",
"required": false,
"env_variable": "VPN_PASSWORD",
"default": ""
},
{
"type": "text",
"label": "TOTP Secret",
"hint": "Base32 encoded TOTP secret for 2FA (from authenticator app setup). Leave empty if not using TOTP.",
"placeholder": "",
"required": false,
"env_variable": "VPN_TOTP_SECRET",
"default": ""
},
{
"type": "text",
"label": "VPN Host",
"hint": "VPN server hostname (for reference)",
"placeholder": "vpn.company.com",
"required": false,
"env_variable": "VPN_HOST",
"default": ""
},
{
"type": "boolean",
"label": "Auto-Connect on Start",
"hint": "Automatically connect to VPN when container starts (requires credentials above)",
"required": false,
"env_variable": "VPN_AUTO_CONNECT",
"default": false
},
{
"type": "password",
"label": "VNC Password",
"hint": "Password for noVNC web interface",
"placeholder": "cisco123",
"required": false,
"env_variable": "VNC_PASSWORD",
"default": "cisco123"
},
{
"type": "text",
"label": "Basic Auth Users",
"hint": "Traefik basic auth users string (htpasswd format). Use generate-traefik-basicauth.sh to create.",
"placeholder": "user:$$apr1$$hash",
"required": false,
"env_variable": "BASICAUTH_USERS",
"default": ""
}
],
"supported_architectures": ["amd64"]
}