By default, Kanban binds to 127.0.0.1:3484 and is only accessible from the machine it’s running on. This guide shows how to enable remote access for mobile devices, remote machines, or team collaboration.
When exposing Kanban beyond localhost, ensure you trust all devices and users with access. Kanban provides full access to your git repository and terminal.
Local Network Access
To make Kanban accessible to other devices on your local network (like a phone or tablet on the same WiFi), bind to 0.0.0.0 instead of 127.0.0.1.
Using CLI Flag
This makes Kanban available at http://<your-machine-ip>:3484 from any device on your network.
Using Environment Variable
When you run cline, it will launch Kanban bound to 0.0.0.0.
Security Note: Binding to 0.0.0.0 exposes Kanban to your entire local network. Only use this on networks you trust, such as your home WiFi.
Tailscale (Recommended for Remote Access)
Tailscale provides secure remote access without exposing ports to the internet. Once configured, you can access Kanban from your phone while on the road, from a coffee shop, or anywhere else.
Setup
- Install Tailscale on both your development machine and your phone/remote device
- Sign in to the same Tailscale account on both devices
- Launch Kanban with network binding:
- Access from your phone: Navigate to your machine’s Tailscale hostname on port 3484:
Your Tailscale hostname is visible in the Tailscale app or admin console.
Tailscale creates a secure mesh VPN, so your connection is encrypted and doesn’t require opening any firewall ports. This is the safest option for remote access.
Docker Deployment
Run Kanban in a Docker container for isolated deployments or server environments.
Dockerfile
Build and Run
Then navigate to http://localhost:3484 from your browser.
To access the Kanban container from other machines on your network, use http://<docker-host-ip>:3484.
SSH Tunnel
SSH tunneling creates a secure connection between your local machine and a remote server. This requires SSH access to the remote machine where Kanban is running.
Setup
On the remote machine, run Kanban normally (it can bind to 127.0.0.1):
On your local machine, create an SSH tunnel:
Then navigate to http://localhost:3484 in your local browser. The SSH tunnel securely forwards the connection to the remote machine.
Replace user with your SSH username and remote-hostname with the IP address or hostname of your remote machine. If using SSH keys, add -i /path/to/key.pem before the username.
Ngrok
Ngrok creates a public HTTPS URL that tunnels to your local Kanban instance. Useful for quick demos or sharing with collaborators.
Setup
Ngrok will display a public URL like https://1234-5678-9012.ngrok-free.app. Share this URL to give others access to your Kanban board.
Ngrok URLs are publicly accessible on the internet. Anyone with the URL can access your Kanban board. Only use this for temporary access and stop the tunnel when finished.
Cloudflare Tunnels
Cloudflare Tunnels provide production-grade remote access with custom domains, access controls, and HTTPS.
Setup
Follow the Cloudflare Tunnel guide to create a tunnel. Then configure your application route with these settings:
- Hostname.subdomain: Choose any subdomain (e.g.,
kanban)
- Hostname.Domain: Your domain configured with Cloudflare
- Hostname.Path: Leave empty
- Service.Type:
HTTP
- Service.URL:
localhost:3484
AWS CDK Example
Deploy Kanban on EC2 with Cloudflare Tunnel using AWS CDK:
Deploy with:
Summary
| Method | Security | Complexity | Use Case |
|---|
| Local Network | Low (LAN only) | Easy | Phone/tablet on same WiFi |
| Tailscale | High (encrypted VPN) | Easy | Remote access from anywhere |
| Docker | Medium (isolated) | Medium | Server deployments |
| SSH Tunnel | High (encrypted) | Medium | Secure remote access |
| Ngrok | Low (public URL) | Easy | Temporary demos/sharing |
| Cloudflare | High (custom domain) | Complex | Production deployments |
For personal remote access, Tailscale offers the best balance of security and ease of use. For production team access, consider Cloudflare Tunnels with access controls.