* middleware/proxy: absorb httpproxy Move the httproxy into proxy. This adds and Exchanger interface which is used to exchange the messages with the upstream. The https_google upstream will re-resolve itself and update the upstream hosts used every 300s. * Remove and add TODO
33 lines
1.3 KiB
Go
33 lines
1.3 KiB
Go
// Package core registers the server and all plugins we support.
|
|
|
|
// Additional middleware packages
|
|
//go:generate go run ../gen/directives_generate.go ../middleware.cfg
|
|
package core
|
|
|
|
import (
|
|
// plug in the server
|
|
_ "github.com/miekg/coredns/core/dnsserver"
|
|
|
|
// plug in the standard directives (sorted)
|
|
_ "github.com/miekg/coredns/middleware/auto"
|
|
_ "github.com/miekg/coredns/middleware/bind"
|
|
_ "github.com/miekg/coredns/middleware/cache"
|
|
_ "github.com/miekg/coredns/middleware/chaos"
|
|
_ "github.com/miekg/coredns/middleware/dnssec"
|
|
_ "github.com/miekg/coredns/middleware/erratic"
|
|
_ "github.com/miekg/coredns/middleware/errors"
|
|
_ "github.com/miekg/coredns/middleware/etcd"
|
|
_ "github.com/miekg/coredns/middleware/file"
|
|
_ "github.com/miekg/coredns/middleware/health"
|
|
_ "github.com/miekg/coredns/middleware/kubernetes"
|
|
_ "github.com/miekg/coredns/middleware/loadbalance"
|
|
_ "github.com/miekg/coredns/middleware/log"
|
|
_ "github.com/miekg/coredns/middleware/metrics"
|
|
_ "github.com/miekg/coredns/middleware/pprof"
|
|
_ "github.com/miekg/coredns/middleware/proxy"
|
|
_ "github.com/miekg/coredns/middleware/rewrite"
|
|
_ "github.com/miekg/coredns/middleware/root"
|
|
_ "github.com/miekg/coredns/middleware/secondary"
|
|
_ "github.com/miekg/coredns/middleware/trace"
|
|
_ "github.com/miekg/coredns/middleware/whoami"
|
|
)
|