* Constent atx headers

* Regen manual pages
This commit is contained in:
Miek Gieben
2018-01-10 11:45:12 +00:00
committed by GitHub
parent 48059a6c3e
commit b7476d0217
20 changed files with 343 additions and 19 deletions

View File

@@ -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).

View File

@@ -127,6 +127,6 @@ Querying with dig:
reverse.skydns.local.
~~~
# Bugs
## Bugs
Only the etcdv2 protocol is supported.

View File

@@ -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.

View File

@@ -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).

View File

@@ -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.

View File

@@ -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.

View File

@@ -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}}`.