mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 17:53:21 -04:00 
			
		
		
		
	* plugin/sign: a plugin that signs zones Sign is a plugin that signs zone data (on disk). The README.md details what exactly happens to should be accurate related to the code. Signs are signed with a CSK, resigning and first time signing is all handled by *sign* plugin. Logging with a test zone looks something like this: ~~~ txt [INFO] plugin/sign: Signing "miek.nl." because open plugin/sign/testdata/db.miek.nl.signed: no such file or directory [INFO] plugin/sign: Signed "miek.nl." with key tags "59725" in 11.670985ms, saved in "plugin/sign/testdata/db.miek.nl.signed". Next: 2019-07-20T15:49:06.560Z [INFO] plugin/file: Successfully reloaded zone "miek.nl." in "plugin/sign/testdata/db.miek.nl.signed" with serial 1563636548 [INFO] plugin/sign: Signing "miek.nl." because resign was: 10m0s ago [INFO] plugin/sign: Signed "miek.nl." with key tags "59725" in 2.055895ms, saved in "plugin/sign/testdata/db.miek.nl.signed". Next: 2019-07-20T16:09:06.560Z [INFO] plugin/file: Successfully reloaded zone "miek.nl." in "plugin/sign/testdata/db.miek.nl.signed" with serial 1563637748 ~~~ Signed-off-by: Miek Gieben <miek@miek.nl> * Adjust readme and remove timestamps Signed-off-by: Miek Gieben <miek@miek.nl> * Comment on the newline Signed-off-by: Miek Gieben <miek@miek.nl> * Update plugin/sign/README.md Co-Authored-By: Michael Grosser <development@stp-ip.net>
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // generated by directives_generate.go; DO NOT EDIT
 | |
| 
 | |
| package plugin
 | |
| 
 | |
| import (
 | |
| 	// Include all plugins.
 | |
| 	_ "github.com/caddyserver/caddy/onevent"
 | |
| 	_ "github.com/coredns/coredns/plugin/any"
 | |
| 	_ "github.com/coredns/coredns/plugin/auto"
 | |
| 	_ "github.com/coredns/coredns/plugin/autopath"
 | |
| 	_ "github.com/coredns/coredns/plugin/azure"
 | |
| 	_ "github.com/coredns/coredns/plugin/bind"
 | |
| 	_ "github.com/coredns/coredns/plugin/cache"
 | |
| 	_ "github.com/coredns/coredns/plugin/cancel"
 | |
| 	_ "github.com/coredns/coredns/plugin/chaos"
 | |
| 	_ "github.com/coredns/coredns/plugin/clouddns"
 | |
| 	_ "github.com/coredns/coredns/plugin/debug"
 | |
| 	_ "github.com/coredns/coredns/plugin/dnssec"
 | |
| 	_ "github.com/coredns/coredns/plugin/dnstap"
 | |
| 	_ "github.com/coredns/coredns/plugin/erratic"
 | |
| 	_ "github.com/coredns/coredns/plugin/errors"
 | |
| 	_ "github.com/coredns/coredns/plugin/etcd"
 | |
| 	_ "github.com/coredns/coredns/plugin/file"
 | |
| 	_ "github.com/coredns/coredns/plugin/forward"
 | |
| 	_ "github.com/coredns/coredns/plugin/grpc"
 | |
| 	_ "github.com/coredns/coredns/plugin/health"
 | |
| 	_ "github.com/coredns/coredns/plugin/hosts"
 | |
| 	_ "github.com/coredns/coredns/plugin/k8s_external"
 | |
| 	_ "github.com/coredns/coredns/plugin/kubernetes"
 | |
| 	_ "github.com/coredns/coredns/plugin/loadbalance"
 | |
| 	_ "github.com/coredns/coredns/plugin/log"
 | |
| 	_ "github.com/coredns/coredns/plugin/loop"
 | |
| 	_ "github.com/coredns/coredns/plugin/metadata"
 | |
| 	_ "github.com/coredns/coredns/plugin/metrics"
 | |
| 	_ "github.com/coredns/coredns/plugin/nsid"
 | |
| 	_ "github.com/coredns/coredns/plugin/pprof"
 | |
| 	_ "github.com/coredns/coredns/plugin/ready"
 | |
| 	_ "github.com/coredns/coredns/plugin/reload"
 | |
| 	_ "github.com/coredns/coredns/plugin/rewrite"
 | |
| 	_ "github.com/coredns/coredns/plugin/root"
 | |
| 	_ "github.com/coredns/coredns/plugin/route53"
 | |
| 	_ "github.com/coredns/coredns/plugin/secondary"
 | |
| 	_ "github.com/coredns/coredns/plugin/sign"
 | |
| 	_ "github.com/coredns/coredns/plugin/template"
 | |
| 	_ "github.com/coredns/coredns/plugin/tls"
 | |
| 	_ "github.com/coredns/coredns/plugin/trace"
 | |
| 	_ "github.com/coredns/coredns/plugin/whoami"
 | |
| 	_ "github.com/coredns/federation"
 | |
| )
 |