65 lines
926 B
Go
65 lines
926 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{
|
|
"metadata",
|
|
"geoip",
|
|
"cancel",
|
|
"tls",
|
|
"timeouts",
|
|
"reload",
|
|
"nsid",
|
|
"bufsize",
|
|
"root",
|
|
"bind",
|
|
"debug",
|
|
"trace",
|
|
"ready",
|
|
"health",
|
|
"pprof",
|
|
"prometheus",
|
|
"errors",
|
|
"log",
|
|
"dnstap",
|
|
"local",
|
|
"dns64",
|
|
"acl",
|
|
"any",
|
|
"chaos",
|
|
"loadbalance",
|
|
"tsig",
|
|
"cache",
|
|
"rewrite",
|
|
"header",
|
|
"dnssec",
|
|
"autopath",
|
|
"minimal",
|
|
"template",
|
|
"transfer",
|
|
"hosts",
|
|
"route53",
|
|
"azure",
|
|
"clouddns",
|
|
"k8s_external",
|
|
"kubernetes",
|
|
"file",
|
|
"auto",
|
|
"secondary",
|
|
"etcd",
|
|
"loop",
|
|
"forward",
|
|
"grpc",
|
|
"erratic",
|
|
"whoami",
|
|
"on",
|
|
"sign",
|
|
"view",
|
|
}
|