From b91345fa005ba9286dac09f4abaed93350c5e372 Mon Sep 17 00:00:00 2001
From: Steffen Busch <37350514+steffenbusch@users.noreply.github.com>
Date: Thu, 26 Oct 2023 16:48:08 +0200
Subject: [PATCH] reverse_proxy: Specify default for health_timeout (#349)
---
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`.