Limits & permissions
Each account has two settings. The host is small, so the defaults are deliberately conservative.
The two settings
| Setting | Default | Effect |
|---|---|---|
| Max tunnels | 2 | The maximum number of tunnels (HTTP + TCP combined) you can run at once. Trying to open more is refused with a clear message until you close one or an admin raises the limit. |
| Request logging | off | Whether request inspection is captured for your tunnels. |
Superadmins have generous defaults and manage everyone else.
Changing the limits
An admin changes these on the dashboard Users page — an editable max-tunnels field and a logs On/Off toggle per user — or via the API:
PATCH /admin/users/<email>
{ "max_tunnels": 5, "logs_enabled": true }The body may include max_tunnels, logs_enabled, or both.
Changes apply to new tunnels
Changes apply to new tunnels. An already-running tunnel keeps its settings until it reconnects.