From 8be536d3ec40f0926a191e755cded14d65c3b3f5 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sun, 2 Feb 2025 14:03:18 +0100 Subject: [PATCH] fix(core): increase HTTP/2 max concurrent streams to 250 (default) --- bootstrap/helpers/proxy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/helpers/proxy.php b/bootstrap/helpers/proxy.php index 6a258d52b..2d2e2ae3e 100644 --- a/bootstrap/helpers/proxy.php +++ b/bootstrap/helpers/proxy.php @@ -182,9 +182,9 @@ function generate_default_proxy_configuration(Server $server) '--entrypoints.http.address=:80', '--entrypoints.https.address=:443', '--entrypoints.http.http.encodequerysemicolons=true', - '--entryPoints.http.http2.maxConcurrentStreams=50', + '--entryPoints.http.http2.maxConcurrentStreams=250', '--entrypoints.https.http.encodequerysemicolons=true', - '--entryPoints.https.http2.maxConcurrentStreams=50', + '--entryPoints.https.http2.maxConcurrentStreams=250', '--entrypoints.https.http3', '--providers.file.directory=/traefik/dynamic/', '--providers.file.watch=true',