blob: a608b0014eb6e64db288197fab357b77bf9b642e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
=encoding utf-8
=head1 NAME
ngx_http_v3_module - Module ngx_http_v3_module
=head1
The C<ngx_http_v3_module> module (1.25.0) provides
experimental support for
L<HTTPE<sol>3|https://datatracker.ietf.org/doc/html/rfc9114>.
This module is not built by default, it should be enabled with the
L<C<--with-http_v3_module>|configure>
configuration parameter.
B<NOTE>
An SSL library that provides QUIC support
such as
L<BoringSSL|https://boringssl.googlesource.com/boringssl>,
L<LibreSSL|https://www.libressl.org>, or
L<QuicTLS|https://github.com/quictls/openssl>
is recommended to build and run this module.
Otherwise,
when using the L<OpenSSL|https://openssl.org> library,
OpenSSL compatibility layer will be used that does not support
L<early data|ngx_http_ssl_module>.
=head1 Known Issues
The module is experimental, caveat emptor applies.
=head1 Example Configuration
http {
log_format quic '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" "$http3"';
access_log logs/access.log quic;
server {
# for better compatibility it's recommended
# to use the same port for http/3 and https
listen 8443 quic reuseport;
listen 8443 ssl;
ssl_certificate certs/example.com.crt;
ssl_certificate_key certs/example.com.key;
location / {
# used to advertise the availability of HTTP/3
add_header Alt-Svc 'h3=":8443"; ma=86400';
}
}
}
Note that accepting HTTPE<sol>3 connections over TLS requires
the TLSv1.3 protocol support, which is available since
L<OpenSSL|http://www.openssl.org> version 1.1.1.
=head1 Directives
=head2 http3
B<syntax:> http3 I<C<on> E<verbar> C<off>>
B<default:> I<on>
B<context:> I<http>
B<context:> I<server>
Enables
L<HTTPE<sol>3|https://datatracker.ietf.org/doc/html/rfc9114>
protocol negotiation.
=head2 http3_hq
B<syntax:> http3_hq I<C<on> E<verbar> C<off>>
B<default:> I<off>
B<context:> I<http>
B<context:> I<server>
Enables HTTPE<sol>0.9 protocol negotiation
used in
L<QUIC
interoperability tests|https://github.com/marten-seemann/quic-interop-runner>.
=head2 http3_max_concurrent_streams
B<syntax:> http3_max_concurrent_streams I<I<C<number>>>
B<default:> I<128>
B<context:> I<http>
B<context:> I<server>
Sets the maximum number of concurrent HTTPE<sol>3 request streams
in a connection.
=head2 http3_stream_buffer_size
B<syntax:> http3_stream_buffer_size I<I<C<size>>>
B<default:> I<64k>
B<context:> I<http>
B<context:> I<server>
Sets the size of the buffer used for reading and writing of the
QUIC streams.
=head2 quic_active_connection_id_limit
B<syntax:> quic_active_connection_id_limit I<I<C<number>>>
B<default:> I<2>
B<context:> I<http>
B<context:> I<server>
Sets the
QUIC C<active_connection_id_limit> transport parameter value.
This is the maximum number of client connection IDs
which can be stored on the server.
=head2 quic_bpf
B<syntax:> quic_bpf I<C<on> E<verbar> C<off>>
B<default:> I<off>
B<context:> I<main>
Enables routing of QUIC packets using
L<eBPF|https://ebpf.io/>.
When enabled, this allows supporting QUIC connection migration.
B<NOTE>
The directive is only supported on Linux 5.7+.
=head2 quic_gso
B<syntax:> quic_gso I<C<on> E<verbar> C<off>>
B<default:> I<off>
B<context:> I<http>
B<context:> I<server>
Enables sending in optimized batch mode
using segmentation offloading.
B<NOTE>
Optimized sending is supported only on Linux
featuring C<UDP_SEGMENT>.
=head2 quic_host_key
B<syntax:> quic_host_key I<I<C<file>>>
B<context:> I<http>
B<context:> I<server>
Sets a I<C<file>> with the secret key used to encrypt
stateless reset and address validation tokens.
By default, a random key is generated on each reload.
Tokens generated with old keys are not accepted.
=head2 quic_retry
B<syntax:> quic_retry I<C<on> E<verbar> C<off>>
B<default:> I<off>
B<context:> I<http>
B<context:> I<server>
Enables the
L<QUIC
Address Validation|https://datatracker.ietf.org/doc/html/rfc9000#name-address-validation> feature.
This includes sending a new token in a C<Retry> packet
or a C<NEW_TOKEN> frame
and
validating a token received in the C<Initial> packet.
=head1 Embedded Variables
The C<ngx_http_v3_module> module
supports the following embedded variables:
=over
=item C<$http3>
negotiated protocol identifier:
“C<h3>” for HTTPE<sol>3 connections,
“C<hq>” for hq connections,
or an empty string otherwise.
=back
|