# HG changeset patch # User Sergey Kandaurov # Date 1643195740 -10800 # Node ID 8f5d0ade0da7c8d52311e368b9afbf2f7a492529 # Parent 7ea585a6ed0ff5cadf3503230887a658263fea6c README: updated to QUICv1. While here, removed old browsers tips. diff --git a/README b/README --- a/README +++ b/README @@ -34,8 +34,7 @@ 1. Introduction What works now: - Currently we support IETF-QUIC draft-29 through final RFC documents. - Earlier drafts are NOT supported as they have incompatible wire format. + We support IETF QUIC version 1. Internet drafts are no longer supported. nginx should be able to respond to HTTP/3 requests over QUIC and it should be possible to upload and download big files without errors. @@ -178,21 +177,12 @@ 4. Clients * Browsers - Known to work: Firefox 80+ and Chrome 85+ (QUIC draft 29+) + Known to work: Firefox 90+ and Chrome 92+ (QUIC version 1) Beware of strange issues: sometimes browser may decide to ignore QUIC Cache clearing/restart might help. Always check access.log and error.log to make sure you are using HTTP/3 and not TCP https. - + to enable QUIC in Firefox, set the following in 'about:config': - network.http.http3.enabled = true - - + to enable QUIC in Chrome, enable it on command line and force it - on your site: - - $ ./chrome --enable-quic --quic-version=h3-29 \ - --origin-to-force-quic-on=example.com:8443 - * Console clients Known to work: ngtcp2, firefox's neqo and chromium's console clients: @@ -201,10 +191,7 @@ 4. Clients $ ./neqo-client https://127.0.0.1:8443/ - $ chromium-build/out/my_build/quic_client http://example.com:8443 \ - --quic_version=h3-29 \ - --allow_unknown_root_cert \ - --disable_certificate_verification + $ chromium-build/out/my_build/quic_client http://example.com:8443 If you've got it right, in the access log you should see something like: @@ -222,7 +209,7 @@ 5. Troubleshooting + Ensure you are using the proper SSL library in runtime (`nginx -V` will show you what you are using) - + Ensure your client is actually sending QUIC requests + + Ensure your client is actually sending requests over QUIC (see "Clients" section about browsers and cache) We recommend to start with simple console client like ngtcp2