Re: How important is the "reuseport" flag for quic?

2024-06-25 Thread Dominic Preston
On Tue, 25 Jun 2024 at 16:35, J Carter wrote: > Very, it's required to use the reuseport parameter when using multiple > workers as per the documentation here[1] so that all UDP packets of a > HTTP/3/quic connection are routed to and handled by the same worker, as > I understand. I see, thanks.

How important is the "reuseport" flag for quic?

2024-06-15 Thread Dominic Preston
I'm using nginx 1.26.1 from the nginx.org ubuntu repo. I find when I remove the "reuseport" flag from the "listen" directive for my quic port, a lot page assets fail to load, and the browser ultimately falls back to http/2. When I re-add "reuseport", all http/3 requests succeed again. How crucia