nginx-quic/README

251 lines
8.3 KiB
Plaintext
Raw Normal View History

2020-04-28 11:16:13 -04:00
Experimental QUIC support for nginx
-----------------------------------
1. Introduction
2. Installing
3. Configuration
4. Clients
5. Troubleshooting
6. Contributing
7. Links
2020-04-28 11:16:13 -04:00
1. Introduction
This is an experimental QUIC [1] / HTTP/3 [2] support for nginx.
The code is developed in a separate "quic" branch available
at https://hg.nginx.org/nginx-quic. Currently it is based
2022-06-22 10:34:58 -04:00
on nginx mainline 1.23.x. We merge new nginx releases into
this branch regularly.
2020-04-28 11:16:13 -04:00
The project code base is under the same BSD license as nginx.
2022-09-12 11:37:36 -03:00
The code is currently at a beta level of quality, however
there are several production deployments with it.
2020-04-28 11:16:13 -04:00
NGINX Development Team is working on improving HTTP/3 support to
integrate it into the main NGINX codebase. Thus, expect further
updates of this code, including features, changes in behaviour,
bug fixes, and refactoring. NGINX Development team will be
grateful for any feedback and code submissions.
2020-04-28 11:16:13 -04:00
Please contact NGINX Development Team via nginx-devel mailing list [3].
2020-04-28 11:16:13 -04:00
What works now:
IETF QUIC version 1 is supported. Internet drafts are no longer supported.
2020-04-28 11:16:13 -04:00
nginx should be able to respond to HTTP/3 requests over QUIC and
2020-04-28 11:16:13 -04:00
it should be possible to upload and download big files without errors.
+ The handshake completes successfully
+ One endpoint can update keys and its peer responds correctly
2020-05-14 10:22:29 -04:00
+ 0-RTT data is being received and acted on
2020-04-28 11:16:13 -04:00
+ Connection is established using TLS Resume Ticket
+ A handshake that includes a Retry packet completes successfully
2020-04-28 11:16:13 -04:00
+ Stream data is being exchanged and ACK'ed
+ An H3 transaction succeeded
+ One or both endpoints insert entries into dynamic table and
subsequently reference them from header blocks
+ Version Negotiation packet is sent to client with unknown version
+ Lost packets are detected and retransmitted properly
+ Clients may migrate to new address
2020-04-28 11:16:13 -04:00
2. Installing
A library that provides QUIC support is required to build nginx, there
are several of those available on the market:
+ BoringSSL [4]
+ LibreSSL [5]
+ QuicTLS [6]
Clone the NGINX QUIC repository
2020-04-28 11:16:13 -04:00
2020-04-30 08:59:14 -04:00
$ hg clone -b quic https://hg.nginx.org/nginx-quic
2020-04-28 11:16:13 -04:00
$ cd nginx-quic
Use the following command to configure nginx with BoringSSL [4]
2022-01-13 10:56:07 -03:00
$ ./auto/configure --with-debug --with-http_v3_module \
--with-cc-opt="-I../boringssl/include" \
--with-ld-opt="-L../boringssl/build/ssl \
-L../boringssl/build/crypto"
2020-04-28 11:16:13 -04:00
$ make
Alternatively, nginx can be configured with QuicTLS [6]
2022-01-13 10:56:07 -03:00
$ ./auto/configure --with-debug --with-http_v3_module \
--with-cc-opt="-I../quictls/build/include" \
--with-ld-opt="-L../quictls/build/lib"
Alternatively, nginx can be configured with a modern version
of LibreSSL [7]
$ ./auto/configure --with-debug --with-http_v3_module \
--with-cc-opt="-I../libressl/build/include" \
--with-ld-opt="-L../libressl/build/lib"
When configuring nginx, it's possible to enable QUIC and HTTP/3
using the following new configuration options:
--with-http_v3_module - enable QUIC and HTTP/3
--with-stream_quic_module - enable QUIC in Stream
2020-04-28 11:16:13 -04:00
3. Configuration
The HTTP "listen" directive got a new option "http3" which enables
HTTP/3 over QUIC on the specified port.
The Stream "listen" directive got a new option "quic" which enables
QUIC as client transport protocol instead of TCP or plain UDP.
2020-04-28 11:16:13 -04:00
Along with "http3" or "quic", it's also possible to specify "reuseport"
option [8] to make it work properly with multiple workers.
2020-04-28 11:16:13 -04:00
To enable address validation:
quic_retry on;
To enable 0-RTT:
ssl_early_data on;
Make sure that TLS 1.3 is configured which is required for QUIC:
ssl_protocols TLSv1.3;
2021-07-23 04:25:16 -04:00
To enable GSO (Generic Segmentation Offloading):
quic_gso on;
To limit maximum UDP payload size on receive path:
quic_mtu <size>;
To set host key for various tokens:
quic_host_key <filename>;
By default, GSO Linux-specific optimization [10] is disabled.
Enable it in case a corresponding network interface is configured to
support GSO.
2021-07-23 04:25:16 -04:00
A number of directives were added that configure HTTP/3:
http3_stream_buffer_size
http3_max_concurrent_pushes
http3_max_concurrent_streams
http3_push
http3_push_preload
http3_hq (requires NGX_HTTP_V3_HQ macro)
In http, an additional variable is available: $http3.
The value of $http3 is "h3" for HTTP/3 connections,
"hq" for hq connections, or an empty string otherwise.
In stream, an additional variable is available: $quic.
2020-04-28 11:16:13 -04:00
The value of $quic is "quic" if QUIC connection is used,
or an empty string otherwise.
2020-04-28 11:16:13 -04:00
Example configuration:
http {
log_format quic '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" "$http3"';
2020-04-28 11:16:13 -04:00
access_log logs/access.log quic;
server {
# for better compatibility it's recommended
# to use the same port for quic and https
listen 8443 http3 reuseport;
listen 8443 ssl;
ssl_certificate certs/example.com.crt;
ssl_certificate_key certs/example.com.key;
ssl_protocols TLSv1.3;
location / {
# required for browsers to direct them into quic port
add_header Alt-Svc 'h3=":8443"; ma=86400';
2020-04-28 11:16:13 -04:00
}
}
}
4. Clients
* Browsers
Known to work: Firefox 90+ and Chrome 92+ (QUIC version 1)
2020-04-28 11:16:13 -04:00
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 the browser is using HTTP/3 and not TCP https.
2020-04-28 11:16:13 -04:00
* Console clients
Known to work: ngtcp2, firefox's neqo and chromium's console clients:
$ examples/client 127.0.0.1 8443 https://example.com:8443/index.html
$ ./neqo-client https://127.0.0.1:8443/
$ chromium-build/out/my_build/quic_client http://example.com:8443
2020-04-28 11:16:13 -04:00
In case everyhing is right, the access log should show something like:
2020-04-28 11:16:13 -04:00
127.0.0.1 - - [24/Apr/2020:11:27:29 +0300] "GET / HTTP/3" 200 805 "-"
"nghttp3/ngtcp2 client" "quic"
2020-04-28 11:16:13 -04:00
5. Troubleshooting
Here are some tips that may help to identify problems:
2020-04-28 11:16:13 -04:00
+ Ensure nginx is built with proper SSL library that supports QUIC
2020-04-28 11:16:13 -04:00
+ Ensure nginx is using the proper SSL library in runtime
(`nginx -V` shows what it's using)
2020-04-28 11:16:13 -04:00
+ Ensure a client is actually sending requests over QUIC
2020-04-28 11:16:13 -04:00
(see "Clients" section about browsers and cache)
We recommend to start with simple console client like ngtcp2
to ensure the server is configured properly before trying
2020-05-22 11:16:34 -04:00
with real browsers that may be very picky with certificates,
2020-04-28 11:16:13 -04:00
for example.
+ Build nginx with debug support [9] and check the debug log.
2020-04-28 11:16:13 -04:00
It should contain all details about connection and why it
failed. All related messages contain "quic " prefix and can
be easily filtered out.
+ For a deeper investigation, please enable additional debugging
in src/event/quic/ngx_event_quic_connection.h:
2020-04-28 11:16:13 -04:00
#define NGX_QUIC_DEBUG_PACKETS
#define NGX_QUIC_DEBUG_FRAMES
#define NGX_QUIC_DEBUG_ALLOC
2020-04-28 11:16:13 -04:00
#define NGX_QUIC_DEBUG_CRYPTO
6. Contributing
Please refer to
http://nginx.org/en/docs/contributing_changes.html
7. Links
2020-04-28 11:16:13 -04:00
[1] https://datatracker.ietf.org/doc/html/rfc9000
[2] https://datatracker.ietf.org/doc/html/rfc9114
[3] https://mailman.nginx.org/mailman3/lists/nginx-devel.nginx.org/
2020-04-28 11:16:13 -04:00
[4] https://boringssl.googlesource.com/boringssl/
[5] https://www.libressl.org/
[6] https://github.com/quictls/openssl
[7] https://github.com/libressl-portable/portable/releases/tag/v3.6.0
[8] https://nginx.org/en/docs/http/ngx_http_core_module.html#listen
[9] https://nginx.org/en/docs/debugging_log.html
[10] http://vger.kernel.org/lpc_net2018_talks/willemdebruijn-lpc2018-udpgso-paper-DRAFT-1.pdf