aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2018-05-11 13:51:21 -0400
committerGravatar GitHub <noreply@github.com> 2018-05-11 13:51:21 -0400
commitafed91646a264969bb14178f9c8d7679729f2005 (patch)
tree4b0993430eb10c8f6ed780c184aacab7a7483853 /plugin
parent2c04e72bdcb41b01bf7dcafc89bc267e27ad606b (diff)
downloadcoredns-afed91646a264969bb14178f9c8d7679729f2005.tar.gz
coredns-afed91646a264969bb14178f9c8d7679729f2005.tar.zst
coredns-afed91646a264969bb14178f9c8d7679729f2005.zip
plugin/proxy: fix except example (#1796)
I just noticed this discrepancy in one of the `except` examples.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/proxy/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/proxy/README.md b/plugin/proxy/README.md
index fe01e736e..7341d31a6 100644
--- a/plugin/proxy/README.md
+++ b/plugin/proxy/README.md
@@ -165,7 +165,7 @@ Proxy everything except `example.org` using the host's `resolv.conf`'s nameserve
~~~ corefile
. {
proxy . /etc/resolv.conf {
- except miek.nl example.org
+ except example.org
}
}
~~~