diff options
author | 2019-04-01 07:52:47 +0100 | |
---|---|---|
committer | 2019-04-01 07:52:47 +0100 | |
commit | a6cc88756c0ee56aa2ee87ec2bd4e6ae9633a924 (patch) | |
tree | 28b06356633f432b06d532aad581e95873488d47 | |
parent | c21f0c9651a550f0b1f2b141d5494ec9d29e7b1c (diff) | |
download | coredns-a6cc88756c0ee56aa2ee87ec2bd4e6ae9633a924.tar.gz coredns-a6cc88756c0ee56aa2ee87ec2bd4e6ae9633a924.tar.zst coredns-a6cc88756c0ee56aa2ee87ec2bd4e6ae9633a924.zip |
proxy: remove from config (#2744)
fully remove proxy and make it completely external.
Signed-off-by: Miek Gieben <miek@miek.nl>
-rw-r--r-- | core/dnsserver/zdirectives.go | 1 | ||||
-rw-r--r-- | core/plugin/zplugin.go | 1 | ||||
-rw-r--r-- | plugin.cfg | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/core/dnsserver/zdirectives.go b/core/dnsserver/zdirectives.go index 37326beac..0420672f0 100644 --- a/core/dnsserver/zdirectives.go +++ b/core/dnsserver/zdirectives.go @@ -44,7 +44,6 @@ var Directives = []string{ "etcd", "loop", "forward", - "proxy", "grpc", "erratic", "whoami", diff --git a/core/plugin/zplugin.go b/core/plugin/zplugin.go index af0ffcb7e..8eab63498 100644 --- a/core/plugin/zplugin.go +++ b/core/plugin/zplugin.go @@ -11,7 +11,6 @@ import ( _ "github.com/coredns/coredns/plugin/cancel" _ "github.com/coredns/coredns/plugin/chaos" _ "github.com/coredns/coredns/plugin/debug" - _ "github.com/coredns/coredns/plugin/deprecated" _ "github.com/coredns/coredns/plugin/dnssec" _ "github.com/coredns/coredns/plugin/dnstap" _ "github.com/coredns/coredns/plugin/erratic" diff --git a/plugin.cfg b/plugin.cfg index 1cbd3ed20..7a941a5ec 100644 --- a/plugin.cfg +++ b/plugin.cfg @@ -53,7 +53,6 @@ secondary:secondary etcd:etcd loop:loop forward:forward -proxy:deprecated grpc:grpc erratic:erratic whoami:whoami |