2025-11-04

This commit is contained in:
gcch 2025-11-04 13:21:41 +01:00
commit 66397de267
101 changed files with 2573 additions and 58 deletions

View file

@ -0,0 +1,14 @@
So, you want http3?
This is a quick & dirty howto.
1. Open port 443/udp to your nginx instance
2. Put http3 on; in nginx.conf. (and additional http2 on; but not required)
3. Add Listen 443 quic; to your ssl interface
4. Put the following in your serverblock (in location /) add_header Alt-Svc 'h3=":443"'; # Advertise that HTTP/3 is available
5. Check with nginx -t if everything is alright
6. Restart nginx
7. Check with curl or an online http3 checker
Please note, the nginx from http://deb.myguard.nl is compiled with OpenSSL3.0.x+quic, you should install the custom OpenSSL from deb.myguard.nl as well if not done automaticly.