From c241ff57fb1e7e00ddea44ae76fff63dc5207388 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Tue, 16 Sep 2025 10:49:57 +0200 Subject: [PATCH] adjust traefik docs Signed-off-by: Simon L. --- reverse-proxy.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/reverse-proxy.md b/reverse-proxy.md index 785e9ace..fa4ea563 100644 --- a/reverse-proxy.md +++ b/reverse-proxy.md @@ -678,6 +678,9 @@ The examples below define the dynamic configuration in YAML files. If you rather entryPoints: https: address: ":443" # Create an entrypoint called "https" that uses port 443 + transport: + respondingTimeouts: + readTimeout: 24h # Allows uploads > 100MB; prevents connection reset due to chunking (public upload-only links) # If you want to enable HTTP/3 support, uncomment the line below # http3: {} @@ -765,9 +768,9 @@ The examples below define the dynamic configuration in YAML files. If you rather entryPoints: https: address: ":443" # Create an entrypoint called "https" that uses port 443 - transport: - respondingTimeouts: - readTimeout: 30m # Allows uploads > 100MB; prevents connection reset due to chunking (public upload-only links) + transport: + respondingTimeouts: + readTimeout: 24h # Allows uploads > 100MB; prevents connection reset due to chunking (public upload-only links) # If you want to enable HTTP/3 support, uncomment the line below # http3: {}