From 19a4ed3f400b7d87e722289fcc1e584d75ed01c5 Mon Sep 17 00:00:00 2001 From: DAM Updater Date: Mon, 3 Aug 2026 15:49:18 -0400 Subject: [PATCH] fix: use real MagicDNS hostname in serve.headscale.json (focalboard.damconsulting.net) The {{service}}.yourdomain.com placeholder does not work in tailscale serve - JSON values are not template-substituted. Use the actual MagicDNS base domain so the user has a working starting point, matching the pattern established in ts-homepage. --- README.md | 2 +- tailscale/config/serve.headscale.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b9d6549..6909f06 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ If you're using Headscale instead of Tailscale: ```bash cp tailscale/config/serve.headscale.json tailscale/config/serve.json ``` -4. Edit `serve.json` and replace `{{service}}.yourdomain.com` with your actual domain +4. Edit `serve.json` to use your actual domain. The default in this file uses `focalboard.damconsulting.net` (Kevin Headscale base domain) - replace it with your own if your setup differs. 5. Start the stack: ```bash docker compose up -d diff --git a/tailscale/config/serve.headscale.json b/tailscale/config/serve.headscale.json index 319b42a..3c33d51 100644 --- a/tailscale/config/serve.headscale.json +++ b/tailscale/config/serve.headscale.json @@ -5,7 +5,7 @@ } }, "Web": { - "{{service}}.yourdomain.com:80": { + "focalboard.damconsulting.net:80": { "Handlers": { "/": { "Proxy": "http://127.0.0.1:8000" @@ -14,4 +14,3 @@ } } } -