diff options
author | 2019-04-02 19:24:54 +0200 | |
---|---|---|
committer | 2019-04-02 18:24:54 +0100 | |
commit | 6f5b294d7e5476050e47214f185ead1562a6ae1e (patch) | |
tree | 995319c9997fb424d2c54acef06ae5a74c87910a | |
parent | da1fa85505784d4be87ef17371178e3c1660a11b (diff) | |
download | coredns-6f5b294d7e5476050e47214f185ead1562a6ae1e.tar.gz coredns-6f5b294d7e5476050e47214f185ead1562a6ae1e.tar.zst coredns-6f5b294d7e5476050e47214f185ead1562a6ae1e.zip |
Add all policies to forward plugin docs (#2751)
-rw-r--r-- | plugin/forward/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/forward/README.md b/plugin/forward/README.md index ecd38f53f..83e1fe8fb 100644 --- a/plugin/forward/README.md +++ b/plugin/forward/README.md @@ -83,6 +83,9 @@ forward FROM TO... { but they have to use the same `tls_servername`. E.g. mixing 9.9.9.9 (QuadDNS) with 1.1.1.1 (Cloudflare) will not work. * `policy` specifies the policy to use for selecting upstream servers. The default is `random`. + * `random` is a policy that implements random upstream selection. + * `round_robin` is a policy that selects hosts based on round robin ordering. + * `sequential` is a policy that selects hosts based on sequential ordering. * `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 |