diff options
author | 2018-04-26 08:44:33 +0100 | |
---|---|---|
committer | 2018-04-26 08:44:33 +0100 | |
commit | 4c7ae4ea95082941cde6236133c84229cd386ed5 (patch) | |
tree | dce78d0d15353e69be737103993c6bbc70ce0a2d | |
parent | 45afa4f4261f9f53ccc612c73bb7e516b968ab54 (diff) | |
download | coredns-4c7ae4ea95082941cde6236133c84229cd386ed5.tar.gz coredns-4c7ae4ea95082941cde6236133c84229cd386ed5.tar.zst coredns-4c7ae4ea95082941cde6236133c84229cd386ed5.zip |
plugin/health: update README (#1739)
* plugin/health: update README
Make more clear in the readme that health is limited to 1 server.
Fixes #1722
* rephrase and remove ~~~ corefile because it will fail
-rw-r--r-- | plugin/health/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugin/health/README.md b/plugin/health/README.md index e547028c2..5cb6c7beb 100644 --- a/plugin/health/README.md +++ b/plugin/health/README.md @@ -48,6 +48,17 @@ net { } ~~~ +Note that if you format this in one server block you will get an error on startup, that the second +server can't setup the health plugin (on the same port). + +~~~ txt +com net { + whoami + erratic + health :8080 +} +~~~~ + ## Plugins Any plugin that implements the Healther interface will be used to report health. |