Skip to content

Commit

Permalink
fix(core): increase HTTP/2 max concurrent streams to 250 (default)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Feb 2, 2025
1 parent 83f0f9f commit 8be536d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap/helpers/proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8be536d

Please sign in to comment.