diff --git a/documentation/docs/advanced/tailscale.md b/documentation/docs/advanced/tailscale.md new file mode 100644 index 00000000..e612c47f --- /dev/null +++ b/documentation/docs/advanced/tailscale.md @@ -0,0 +1,39 @@ +# Tailscale + +:::info +This is only helpful for secure cross-device access to **self-hosted** Khoj. You **do not** need this if you're using [Khoj Cloud](https://app.khoj.dev). +::: + +[Tailscale](https://tailscale.com) simplifies creating a private VPN using [Wireguard](https://www.wireguard.com/) and OAuth. So you can host and access services on your devices from anywhere. +The instructions below are one way to simply and securely access your self-hosted Khoj from your phone, laptop etc. + +### Minimal Setup +1. Setup khoj on your preferred machine following the [standard steps](/get-started/setup) +2. Sign-up to [Tailscale](https://tailscale.com) and install the app on machines you want to access Khoj from. This usually includes your khoj server, your phone, laptop. Note the tailscale i.p of your khoj server. +3. Start khoj on your server by including the flag `--host ` +4. Open `http://:42110` to access khoj from any device on your tailscale network! + + +### HTTPS Certificate +:::info +Tailscale uses Wireguard to encrypt and route traffic between your machines. So HTTPS isn't required with Tailscale for secure access. HTTPS with Tailscale is only useful for browsers to not complain about security and block certain features like clipboard access unless HTTPS is enabled. +::: + +1. Enable [MagicDNS](https://tailscale.com/kb/1081/magicdns#enabling-magicdns) and [HTTPS](https://tailscale.com/kb/1153/enabling-https) toggle on your tailscale admin console [DNS](https://login.tailscale.com/admin/dns) page. Note your unique tailscale domain name (usually ends with .ts.net) +2. Create an https certificate for your Khoj server by running the following command: + ```bash + # Assuming the server is named, `server` and your tailnet is `black-forest.ts.net` + # Note path of the .crt and .key files generated + + tailscale cert server.black-forest.ts.net + ``` +3. Start khoj to be served via https on standard port + ```bash + sudo KHOJ_DOMAIN=server.black-forest.ts.net \ + khoj \ + --sslcert /path/to/your/tailscale.crt \ + --sslkey path/to/your/tailscale.key \ + --host=server.black-forest.ts.net \ + --port 443 + ``` +4. You should now be able to access khoj on `https://server.black-forest.ts.net` from any device on your private tailscale network!