79495862

Date: 2025-03-09 11:51:47
Score: 0.5
Natty:
Report link

After recreating projects from scratch, that worked just fine, I eventually decided to fire up Wireshark just to see if the events were really getting sent out or not. That's when I remembered I had an nginx running locally to handle the certs and ports. Sure enough, it was buffering the events.

I added the following and everything now works fine:

proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_buffering off;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Steve Maring