comparison README @ 8819:d0ef43a53a51 quic

QUIC: updated README with GSO details.
author Vladimir Homutov <vl@nginx.com>
date Fri, 23 Jul 2021 11:25:16 +0300
parents d56c7c4b66fd
children 4d871baeacd2
comparison
equal deleted inserted replaced
8818:07f90cb79fec 8819:d0ef43a53a51
125 125
126 Make sure that TLS 1.3 is configured which is required for QUIC: 126 Make sure that TLS 1.3 is configured which is required for QUIC:
127 127
128 ssl_protocols TLSv1.3; 128 ssl_protocols TLSv1.3;
129 129
130 To enable GSO (Generic Segmentation Offloading):
131
132 quic_gso on;
133
134 By default this Linux-specific optimization [8] is disabled.
135 Enable if your network interface is configured to support GSO.
136
130 A number of directives were added that configure HTTP/3: 137 A number of directives were added that configure HTTP/3:
131 138
132 http3_max_table_capacity 139 http3_max_table_capacity
133 http3_max_blocked_streams 140 http3_max_blocked_streams
134 http3_max_concurrent_pushes 141 http3_max_concurrent_pushes
246 [3] https://mailman.nginx.org/mailman/listinfo/nginx-devel 253 [3] https://mailman.nginx.org/mailman/listinfo/nginx-devel
247 [4] https://boringssl.googlesource.com/boringssl/ 254 [4] https://boringssl.googlesource.com/boringssl/
248 [5] https://datatracker.ietf.org/doc/html/rfc9002 255 [5] https://datatracker.ietf.org/doc/html/rfc9002
249 [6] https://nginx.org/en/docs/http/ngx_http_core_module.html#listen 256 [6] https://nginx.org/en/docs/http/ngx_http_core_module.html#listen
250 [7] https://nginx.org/en/docs/debugging_log.html 257 [7] https://nginx.org/en/docs/debugging_log.html
258 [8] http://vger.kernel.org/lpc_net2018_talks/willemdebruijn-lpc2018-udpgso-paper-DRAFT-1.pdf