diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/dnstap/README.md | 2 | ||||
-rw-r--r-- | plugin/etcd/README.md | 2 | ||||
-rw-r--r-- | plugin/metrics/README.md | 2 | ||||
-rw-r--r-- | plugin/pprof/README.md | 2 | ||||
-rw-r--r-- | plugin/proxy/README.md | 2 | ||||
-rw-r--r-- | plugin/secondary/README.md | 2 | ||||
-rw-r--r-- | plugin/template/README.md | 6 |
7 files changed, 10 insertions, 8 deletions
diff --git a/plugin/dnstap/README.md b/plugin/dnstap/README.md index b38f7323d..1197e6bd8 100644 --- a/plugin/dnstap/README.md +++ b/plugin/dnstap/README.md @@ -64,6 +64,6 @@ Listen for dnstap messages on port 6000. % dnstap -l 127.0.0.1:6000 ~~~ -# See Also +## See Also [dnstap.info](http://dnstap.info). diff --git a/plugin/etcd/README.md b/plugin/etcd/README.md index e5e30a63c..d4f85f024 100644 --- a/plugin/etcd/README.md +++ b/plugin/etcd/README.md @@ -127,6 +127,6 @@ Querying with dig: reverse.skydns.local. ~~~ -# Bugs +## Bugs Only the etcdv2 protocol is supported. diff --git a/plugin/metrics/README.md b/plugin/metrics/README.md index 7dfb13676..b14628675 100644 --- a/plugin/metrics/README.md +++ b/plugin/metrics/README.md @@ -62,7 +62,7 @@ then: } ~~~ -# Bugs +## Bugs When reloading, we keep the handler running, meaning that any changes to the handler's address aren't picked up. You'll need to restart CoreDNS for that to happen. diff --git a/plugin/pprof/README.md b/plugin/pprof/README.md index 82ece3464..a718d35a4 100644 --- a/plugin/pprof/README.md +++ b/plugin/pprof/README.md @@ -50,7 +50,7 @@ Listen on an all addresses on port 6060: } ~~~ -# Also See +## Also See See [Go's pprof documentation](https://golang.org/pkg/net/http/pprof/) and [Profiling Go Programs](https://blog.golang.org/profiling-go-programs). diff --git a/plugin/proxy/README.md b/plugin/proxy/README.md index c5356ea37..ce67c1d79 100644 --- a/plugin/proxy/README.md +++ b/plugin/proxy/README.md @@ -195,7 +195,7 @@ example.org { } ~~~ -# Bugs +## Bugs When using the `google_https` protocol the health checking will health check the wrong endpoint. See <https://github.com/coredns/coredns/issues/1202> for some background. diff --git a/plugin/secondary/README.md b/plugin/secondary/README.md index bf557973f..62e078b73 100644 --- a/plugin/secondary/README.md +++ b/plugin/secondary/README.md @@ -59,6 +59,6 @@ Or re-export the retrieved zone to other secondaries. } ~~~ -# Bugs +## Bugs Only AXFR is supported and the retrieved zone is not committed to disk. diff --git a/plugin/template/README.md b/plugin/template/README.md index 13e6137b4..23c499341 100644 --- a/plugin/template/README.md +++ b/plugin/template/README.md @@ -1,5 +1,7 @@ # template +## Name + *template* - allows for dynamic responses based on the incoming query. ## Description @@ -233,14 +235,14 @@ Named capture groups can be used to template one response for multiple patterns. } ~~~ -# Also see +## Also see - [Go regexp](https://golang.org/pkg/regexp/) for details about the regex implementation - [RE2 syntax reference](https://github.com/google/re2/wiki/Syntax) for details about the regex syntax - [RFC-1034](https://tools.ietf.org/html/rfc1034#section-3.6.1) and [RFC 1035](https://tools.ietf.org/html/rfc1035#section-5) for the resource record format - [Go template](https://golang.org/pkg/text/template/) for the template language reference -# Bugs +## Bugs CoreDNS supports [caddyfile environment variables](https://caddyserver.com/docs/caddyfile#env) with notion of `{$ENV_VAR}`. This parser feature will break [Go template variables](https://golang.org/pkg/text/template/#hdr-Variables) notations like`{{$variable}}`. |