From 09f5020316fee48e15c83c0d73e05068f05c1a7f Mon Sep 17 00:00:00 2001 From: peskyadmin Date: Sun, 2 Aug 2026 15:52:35 -0400 Subject: [PATCH] docs: improve .env.example with better placeholders and comments - Use controlplane.tailscale.com as default TS_LOGIN_SERVER - Use consistent .your-tailnet.ts.net and .yourdomain.com placeholders - Add clear section comments --- .env.example | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..d379907 --- /dev/null +++ b/.env.example @@ -0,0 +1,22 @@ +# ========================================== +# Tailscale / Headscale Configuration +# ========================================== + +# Your Tailscale or Headscale auth key +# Generate this in the admin console (make it reusable if needed) +TS_AUTHKEY=*** + +# Tailscale control server (default) or your Headscale URL +TS_LOGIN_SERVER=https://controlplane.tailscale.com + +# ========================================== +# Application-Specific Configuration +# ========================================== + +# Public URL users will access the service at +# For Headscale: usually http://vikunja.yourdomain.com +# For Tailscale with certs: usually https://vikunja.your-tailnet.ts.net +VIKUNJA_SERVICE_PUBLICURL=http://vikunja.your-tailnet.ts.net + +# Frontend URL (usually the same as PUBLICURL) +VIKUNJA_SERVICE_FRONTENDURL=http://vikunja.your-tailnet.ts.net