diff --git a/src/docs/markdown/caddyfile/directives/reverse_proxy.md b/src/docs/markdown/caddyfile/directives/reverse_proxy.md index 1fdc564..57f7ce4 100644 --- a/src/docs/markdown/caddyfile/directives/reverse_proxy.md +++ b/src/docs/markdown/caddyfile/directives/reverse_proxy.md @@ -72,6 +72,7 @@ reverse_proxy [] [] { health_timeout health_status health_body + health_follow_redirects health_headers { [] } @@ -324,6 +325,8 @@ Active health checks perform health checking in the background on a timer. To en - **health_body** is a substring or regular expression to match on the response body of an active health check. If the backend does not return a matching body, it will be marked as down. +- **health_follow_redirects** will cause the health check to follow redirects provided by upstream. Without this setting, a redirect will cause the check to fail. + - **health_headers** allows specifying headers to set on the active health check requests. This is useful if you need to change the `Host` header, or if you need to provide some authentication to your backend as part of your health checks.