coredns/core/dnsserver/zdirectives.go
Miek Gieben d8714e64e4 Remove the word middleware (#1067)
* Rename middleware to plugin

first pass; mostly used 'sed', few spots where I manually changed
text.

This still builds a coredns binary.

* fmt error

* Rename AddMiddleware to AddPlugin

* Readd AddMiddleware to remain backwards compat
2017-09-14 09:36:06 +01:00

44 lines
699 B
Go

// generated by directives_generate.go; DO NOT EDIT
package dnsserver
// Directives are registered in the order they should be
// executed.
//
// Ordering is VERY important. Every plugin will
// feel the effects of all other plugin below
// (after) them during a request, but they must not
// care what plugin above them are doing.
var directives = []string{
"tls",
"root",
"bind",
"debug",
"trace",
"health",
"pprof",
"prometheus",
"errors",
"log",
"autopath",
"dnstap",
"chaos",
"cache",
"rewrite",
"loadbalance",
"dnssec",
"reverse",
"hosts",
"federation",
"kubernetes",
"file",
"auto",
"secondary",
"etcd",
"proxy",
"erratic",
"whoami",
"startup",
"shutdown",
}