aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar John Belamaric <jbelamaric@infoblox.com> 2018-02-22 18:24:21 -0500
committerGravatar GitHub <noreply@github.com> 2018-02-22 18:24:21 -0500
commite3b7beab6abd4c725b386ee5a89b344b5d4d413b (patch)
tree20777f2718916062179496b7a12b30eb2502d6f5
parent83b5eadb4e4af8698bb5aed9e243fc024f34296b (diff)
downloadcoredns-e3b7beab6abd4c725b386ee5a89b344b5d4d413b.tar.gz
coredns-e3b7beab6abd4c725b386ee5a89b344b5d4d413b.tar.zst
coredns-e3b7beab6abd4c725b386ee5a89b344b5d4d413b.zip
Fix health_checks which should be health_check (#1556)
-rw-r--r--plugin/forward/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/forward/README.md b/plugin/forward/README.md
index 55f976e82..e3ba86a80 100644
--- a/plugin/forward/README.md
+++ b/plugin/forward/README.md
@@ -46,7 +46,7 @@ forward FROM TO... {
tls CERT KEY CA
tls_servername NAME
policy random|round_robin
- health_checks DURATION
+ health_check DURATION
}
~~~
@@ -63,7 +63,7 @@ forward FROM TO... {
* `tls_servername` **NAME** allows you to set a server name in the TLS configuration; for instance 9.9.9.9
needs this to be set to `dns.quad9.net`.
* `policy` specifies the policy to use for selecting upstream servers. The default is `random`.
-* `health_checks`, use a different **DURATION** for health checking, the default duration is 0.5s.
+* `health_check`, use a different **DURATION** for health checking, the default duration is 0.5s.
Also note the TLS config is "global" for the whole forwarding proxy if you need a different
`tls-name` for different upstreams you're out of luck.