Stack uses Tailscale + Nginx Proxy Manager, not Traefik. Client exposes PORT (default 3080) for NPM to proxy to. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
1.1 KiB
Plaintext
20 lines
1.1 KiB
Plaintext
# ── Registry ──────────────────────────────────────────────────────────────────
|
|
# Hostname of your container registry (no trailing slash)
|
|
REGISTRY=gitea.thewrightserver.net
|
|
|
|
# Image tag to deploy (default: latest)
|
|
TAG=latest
|
|
|
|
# ── PostgreSQL ────────────────────────────────────────────────────────────────
|
|
POSTGRES_PASSWORD=change-this-to-a-strong-password
|
|
|
|
# ── App ───────────────────────────────────────────────────────────────────────
|
|
# Generate with: openssl rand -hex 64
|
|
JWT_SECRET=change-this-to-a-long-random-string
|
|
|
|
# Origin NPM proxies to this app (used for CORS)
|
|
CLIENT_URL=http://tickets.thewrightserver.net
|
|
|
|
# Host port NPM proxies to — change if 3080 is taken
|
|
PORT=3080
|