fix: add WebSocket timeout annotations and use-regex to ingresses #419
Reference in New Issue
Block a user
Delete Branch "fix/ws-ingress-annotations"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add proxy-read-timeout and proxy-send-timeout (3600s) so nginx does not
drop long-lived WebSocket connections at the default 60s idle timeout.
Add use-regex: "true" to staging to match production — without it, the
ImplementationSpecific path for the game WebSocket
(/api/board/game/[A-Za-z0-9]{8}/ws) is treated as a literal string
instead of a regex and never matches real game IDs.
Add proxy-read-timeout and proxy-send-timeout (3600s) so nginx does not drop long-lived WebSocket connections at the default 60s idle timeout. Add use-regex: "true" to staging to match production — without it, the ImplementationSpecific path for the game WebSocket (/api/board/game/[A-Za-z0-9]{8}/ws) is treated as a literal string instead of a regex and never matches real game IDs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>fix(nci): add WebSocket timeout annotations and use-regex to ingressesto fix: add WebSocket timeout annotations and use-regex to ingresses