2026-04-03 23:18:06 +02:00
# Tailscale Guide (Zero-Config Remote Access)
2026-03-30 22:31:06 +02:00
2026-04-03 23:18:06 +02:00
Use Tailscale when you want remote access without port forwarding.
2026-03-30 22:31:06 +02:00
2026-04-03 23:18:06 +02:00
## Why Tailscale
2026-03-30 22:31:06 +02:00
2026-04-03 23:18:06 +02:00
Tailscale creates an encrypted private network between your devices using WireGuard.
It works behind CGNAT and strict home routers, so setup is usually faster than manual forwarding.
2026-03-30 22:31:06 +02:00
## Setup
2026-04-03 23:18:06 +02:00
1. Install Tailscale on the server machine and client machines: https://tailscale.com/download
2. Sign in and confirm all devices are in the same tailnet (or shared access is granted).
3. Get the server Tailscale IP (usually `100.x.y.z` ) from the Tailscale app.
4. Keep OwnCord on port `8443` .
5. Connect clients to `https://<tailscale-ip>:8443` .
2026-08-15 20:50:47 +02:00
> **Admin panel over Tailscale:** chat works out of the box, but `/admin`,
> `/api/v1/metrics`, and the LiveKit health/webhook routes are gated by
> `server.admin_allowed_cidrs`, whose default covers only loopback and
> RFC1918 private ranges — Tailscale's `100.x.y.z` addresses (CGNAT range
> `100.64.0.0/10`) are **not** included and will get a 403. To administer
> over the tailnet, add it to your `config.yaml`:
>
> ```yaml
> server:
> admin_allowed_cidrs:
> - "127.0.0.0/8"
2026-08-26 20:00:26 +02:00
> - "100.64.0.0/10" # Tailscale tailnet
2026-08-15 20:50:47 +02:00
> ```
2026-04-03 23:18:06 +02:00
## TLS Recommendation
- Recommended: keep `tls.mode: self_signed` (default).
- Optional advanced setup: set `tls.mode: off` only if every client is strictly inside trusted Tailscale access and you accept plaintext inside the tailnet.
## Voice/Video with Tailscale
- Tailscale handles device-to-device reachability, but LiveKit still needs correct runtime config.
- Follow [livekit-setup.md ](livekit-setup.md ) for LiveKit key/secret and port behavior.
2026-03-30 22:31:06 +02:00
## Benefits
2026-04-03 23:18:06 +02:00
- No router port forwarding.
- Works behind CGNAT.
- Stable private IPs.
- Encrypted transport by default.