Save tunnel configurations once, reuse them across your team. Flexible scoping, multiple authentication methods, and multi-service routing.
Tunnel Config: "Frontend Dev"
├── Subdomain: frontend.tunnel.asd.host
├── Scope: Team (Frontend Team)
├── Auth: Supabase (JWT validation)
├── Routes
│ ├── / → localhost:3000 (Next.js)
│ ├── /api/* → localhost:8080 (API)
│ └── /ws → localhost:3001 (WebSocket)
├── Keys: 3 active, 1 expired
└── Status: ActiveDefine tunnel configs once, reuse everywhere. Store subdomain, protocols, and authentication settings as reusable configurations.
Scope configs to individual users, teams, departments, or the entire organization. Control who can use which tunnel configurations.
Protect tunnels with Basic Auth, OIDC, or Supabase Auth. Configure required claims and audiences for fine-grained access control.
Full support for HTTP, HTTPS, TCP, and WebSocket protocols. Route multiple services through a single subdomain.
Generate cryptographic keys for tunnel authentication. Keys can be active, revoked, or expired with automatic cleanup.
Route different paths to different local services. Perfect for microservices and multi-container development environments.
Control who can use tunnel configurations with flexible scope levels. Scoping integrates with your organization hierarchy.
Only the config creator can use this tunnel configuration
All members of the assigned team can use this configuration
All teams within a department have access to this config
Anyone in the organization can use this tunnel configuration
Protect your tunnel endpoints with the authentication method that fits your workflow.
| Method | Description | Best For |
|---|---|---|
| None | No authentication required. Tunnel endpoints are publicly accessible. | Public demos, development previews |
| Basic Auth | HTTP Basic Authentication with username and password. | Simple access control, internal tools |
| OIDC | OpenID Connect authentication with any compliant provider. | Enterprise SSO, third-party auth |
| Supabase Auth | Validate Supabase JWTs with audience and claims checking. | Supabase-based applications |
Tunnel configuration management is included in every ASD subscription. Higher tiers unlock more concurrent tunnels and team features.
Learn how to create and manage tunnel configurations with our CLI and API documentation.
View Documentation