From 0d3c622a360e27969ac14406cf7e86f1a0668fea Mon Sep 17 00:00:00 2001
From: Steffen Busch <37350514+steffenbusch@users.noreply.github.com>
Date: Wed, 25 Oct 2023 18:01:08 +0200
Subject: [PATCH] Add default for health_timeout
---
src/docs/markdown/caddyfile/directives/reverse_proxy.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/docs/markdown/caddyfile/directives/reverse_proxy.md b/src/docs/markdown/caddyfile/directives/reverse_proxy.md
index bb2a1df..9cc13ab 100644
--- a/src/docs/markdown/caddyfile/directives/reverse_proxy.md
+++ b/src/docs/markdown/caddyfile/directives/reverse_proxy.md
@@ -316,7 +316,7 @@ Active health checks perform health checking in the background on a timer. To en
- **health_interval** is a [duration value](/docs/conventions#durations) that defines how often to perform active health checks. Default: `30s`.
-- **health_timeout** is a [duration value](/docs/conventions#durations) that defines how long to wait for a reply before marking the backend as down.
+- **health_timeout** is a [duration value](/docs/conventions#durations) that defines how long to wait for a reply before marking the backend as down. Default: `5s`.
- **health_status** is the HTTP status code to expect from a healthy backend. Can be a 3-digit status code, or a status code class ending in `xx`. For example: `200` (which is the default), or `2xx`.