• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved HTTP 3 is not used despite NGINX Only hosting

@Paulo_o I currently have worker_processes = 8 or worker_processes = 12, it depends on the server, in principle I just want all cores to be used.

HTTP3 works for me with Curl but it just doesn't show up in the browser.
But as long as there isn't a stable version of it, the module is uninteresting anyway, until then the details will be out.
I had a similar issue using worker_processes greater than 1. Just added "reuseport" to the quic server like

Code:
listen IP:443 quic reuseport;

and all browsers started to show "h3" protocol and not "h2".
 
@Paulo_o

The NGINX config where you changed it is generated automatically without "reuseport", which means that a change is not permanent.
Or have you found a solution to generate it with "reuseport"?
 
reuseport must be used if you have worker_processes greater than one to get http3 working propely. Otherwise browser acesses are reset to HTTP2 protocol.

First you may doble check changing nginx temporary to worker_processes =1; Case the issue its resolved, then you may include reuseport to get a stable solution.

To include reuseport, you just need to make a very small change into template, creating a custom template. You may check this post.
 
Back
Top