We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caffea0 commit 42d8081Copy full SHA for 42d8081
rootfs/etc/nginx/template/nginx.tmpl
@@ -2,6 +2,7 @@
2
{{ $servers := .Servers }}
3
{{ $cfg := .Cfg }}
4
{{ $IsIPV6Enabled := .IsIPV6Enabled }}
5
+{{ $IsQUICEnabled := .IsQUICEnabled }}
6
{{ $healthzURI := .HealthzURI }}
7
{{ $backends := .Backends }}
8
{{ $proxyHeaders := .ProxySetHeaders }}
@@ -288,8 +289,10 @@ http {
288
289
290
http2_max_concurrent_streams {{ $cfg.HTTP2MaxConcurrentStreams }};
291
292
+ {{ if $IsQUICEnabled }}
293
http3_max_concurrent_streams {{ $cfg.HTTP3MaxConcurrentStreams }};
294
http3_stream_buffer_size {{ $cfg.HTTP3StreamBufferSize }};
295
+ {{ end }}
296
297
types_hash_max_size 2048;
298
server_names_hash_max_size {{ $cfg.ServerNameHashMaxSize }};
0 commit comments