- S10: Add warnings to silent health check failures in deploy scripts - S11: Add trap cleanup for temp dirs in deploy and tailscale scripts - S12: Quote 20+ critical unquoted variables across deploy scripts - S13: Extract hardcoded IPs to deploy-config-defaults.sh - S15: Add --memory=256m to UI container runs - F16: Remove in-memory JWT, use cookie-only auth in filebrowser client - F17: Add meta tag fallback for CSRF token in RPC client - F19: Track and clear setTimeout in AppSession on unmount Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
250 B
Bash
Executable File
8 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
# Default deployment targets — override in deploy-config.sh (gitignored)
|
|
DEFAULT_PRIMARY="192.168.1.228"
|
|
DEFAULT_SECONDARY="192.168.1.198"
|
|
TAILSCALE_ARCH1="100.82.97.63"
|
|
TAILSCALE_ARCH2="100.122.84.60"
|
|
TAILSCALE_ARCH3="100.124.105.113"
|