From 3ba3ca6eb05945d2f39159fff4591d772eb7e494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imm=C3=A1nuel!?= <21174107+immanuelfodor@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:00:06 +0100 Subject: [PATCH] Fix the keepAlive options for the CLI examples --- docs/content/routing/entrypoints.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/routing/entrypoints.md b/docs/content/routing/entrypoints.md index c77c8e406..fe78191e0 100644 --- a/docs/content/routing/entrypoints.md +++ b/docs/content/routing/entrypoints.md @@ -616,7 +616,7 @@ The maximum number of requests Traefik can handle before sending a `Connection: ```bash tab="CLI" ## Static configuration --entryPoints.name.address=:8888 - --entryPoints.name.transport.keepAliveRequests=42 + --entryPoints.name.transport.keepAliveMaxRequests=42 ``` #### `keepAliveMaxTime` @@ -646,7 +646,7 @@ The maximum duration Traefik can handle requests before sending a `Connection: C ```bash tab="CLI" ## Static configuration --entryPoints.name.address=:8888 - --entryPoints.name.transport.keepAliveTime=42s + --entryPoints.name.transport.keepAliveMaxTime=42s ``` ### ProxyProtocol