From 99b54546761f69b61c9d1236373afee8087c7934 Mon Sep 17 00:00:00 2001 From: Kai Biebel <38378574+seclution@users.noreply.github.com> Date: Mon, 7 Jul 2025 09:59:34 +0200 Subject: [PATCH] Update reverse-proxy.md Increase timeouts to prevent connection reset on uploads >100MB in clean Traefik setup Signed-off-by: Kai Biebel <38378574+seclution@users.noreply.github.com> --- reverse-proxy.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reverse-proxy.md b/reverse-proxy.md index 84aad3d1..785e9ace 100644 --- a/reverse-proxy.md +++ b/reverse-proxy.md @@ -765,6 +765,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) # If you want to enable HTTP/3 support, uncomment the line below # http3: {}