When no Corefile is given, default to loading the whoami middleware on the default port (2053). Also add back the -port flag that allows you to override the default port. Further cleanup the startup messages and use caddy's OnStartupComplete() to blurp out which zones and ports we have. These can be suppressed with the -quiet flag. Normal startup: miek.nl.:1053 miek.nl2.:1053 example.org.:1054 2016/09/17 20:41:19 [INFO] CoreDNS-001 starting CoreDNS-001 starting with the -quiet flag: 2016/09/17 20:41:34 [INFO] CoreDNS-001 starting
25 lines
947 B
Go
25 lines
947 B
Go
package core
|
|
|
|
import (
|
|
// plug in the server
|
|
_ "github.com/miekg/coredns/core/dnsserver"
|
|
|
|
// plug in the standard directives
|
|
_ "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/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/secondary"
|
|
_ "github.com/miekg/coredns/middleware/whoami"
|
|
)
|