mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			895 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			895 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",
 | 
						|
	"reload",
 | 
						|
	"nsid",
 | 
						|
	"bufsize",
 | 
						|
	"root",
 | 
						|
	"bind",
 | 
						|
	"debug",
 | 
						|
	"trace",
 | 
						|
	"ready",
 | 
						|
	"health",
 | 
						|
	"pprof",
 | 
						|
	"prometheus",
 | 
						|
	"errors",
 | 
						|
	"log",
 | 
						|
	"dnstap",
 | 
						|
	"local",
 | 
						|
	"dns64",
 | 
						|
	"acl",
 | 
						|
	"any",
 | 
						|
	"chaos",
 | 
						|
	"loadbalance",
 | 
						|
	"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",
 | 
						|
}
 |