pnpm monorepo with three workspaces: - @sbt/shared: zod ScoreboardState + WebSocket protocol (single source of truth) - @sbt/server: Fastify REST + raw ws WebSocket + Drizzle/Postgres, run via tsx - @sbt/web: React + Vite + Tailwind installable PWA Real-time core: the WebSocket server holds authoritative per-board state in memory, broadcasts to all clients (editors + OBS overlays) instantly, and debounces Postgres saves (~750ms). One useScoreboardSync hook powers the editor, the no-login co-edit control page, and the read-only OBS overlay. Includes email+password auth (JWT cookie), scoreboard CRUD, logo upload, customizable scorebug (characters/stocks/score/subtitles/callout/side-swap/theme), Docker Compose + Caddy/nginx deploy configs, and docs/PLAN.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
37 lines
1.1 KiB
Nginx Configuration File
37 lines
1.1 KiB
Nginx Configuration File
# nginx server block. Use certbot (Let's Encrypt) for the TLS certificate.
|
|
# The key detail is the Upgrade/Connection headers so /ws WebSockets pass through.
|
|
|
|
map $http_upgrade $connection_upgrade {
|
|
default upgrade;
|
|
'' close;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name scoreboard.example.com;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/scoreboard.example.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/scoreboard.example.com/privkey.pem;
|
|
|
|
client_max_body_size 6m; # allow logo uploads
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:3000;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
# WebSocket upgrade (covers /ws)
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $connection_upgrade;
|
|
proxy_read_timeout 1h;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name scoreboard.example.com;
|
|
return 301 https://$host$request_uri;
|
|
}
|