Files
runtipi/apps/cistech-tunnel/config.json
alexz 9307cab1bb
Some checks failed
Test / test (push) Has been cancelled
fix(cistech-tunnel): correct routing config and sync compose files
- host-routing.sh: Updated to use cistech values (172.30.0.10, br-vpn-static)
- config.json: Added TARGET_IP form field, bumped tipi_version to 2
- docker-compose.json: Added TARGET_IP environment variable
- docker-compose.yml: Synced with docker-compose.json (correct image, port 6080, all env vars)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-17 11:10:59 +00:00

64 lines
1.7 KiB
JSON
Executable File

{
"name": "Cistech Tunnel",
"id": "cistech-tunnel",
"available": true,
"short_desc": "Cistech VPN client container with noVNC.",
"author": "alexz",
"port": 6080,
"categories": [
"utilities",
"network"
],
"description": "OpenConnect-SSO VPN running in an isolated namespace with noVNC for first-time SSO reconnects.",
"tipi_version": 2,
"version": "latest",
"source": "local",
"exposable": true,
"dynamic_config": true,
"no_gui": false,
"form_fields": [
{
"label": "VPN URL",
"type": "text",
"env_variable": "OC_URL",
"required": true,
"default": "https://vpn.cistech.net/Employees"
},
{
"label": "Username (email)",
"type": "text",
"env_variable": "OC_USER",
"required": true
},
{
"label": "VPN Password",
"type": "password",
"env_variable": "OC_PASSWORD",
"required": true
},
{
"label": "TOTP Secret",
"type": "password",
"env_variable": "OC_TOTP_SECRET",
"required": false,
"hint": "Base32 TOTP secret for auto-login"
},
{
"label": "VNC Password",
"type": "password",
"env_variable": "VNC_PASSWORD",
"required": true
},
{
"label": "Target IP",
"type": "text",
"env_variable": "TARGET_IP",
"required": false,
"hint": "IP address to route through VPN (for host routing)"
}
],
"supported_architectures": [
"arm64",
"amd64"
]
}