Abstract the caddy call and make it simpler. See #3261 for some part of the discussion. Go from: ~~~ go func init() { caddy.RegisterPlugin("any", caddy.Plugin{ ServerType: "dns", Action: setup, }) } ~~~ To: ~~~ go func init() { plugin.Register("any", setup) } ~~~ This requires some external documents in coredns.io to be updated as well; the old way still works, so it's backwards compatible. Signed-off-by: Miek Gieben <miek@miek.nl> |
||
---|---|---|
.. | ||
any.go | ||
any_test.go | ||
OWNERS | ||
README.md | ||
setup.go |
any
Name
any - gives a minimal response to ANY queries.
Description
any basically blocks ANY queries by responding to them with a short HINFO reply. See RFC 8482 for details.
Syntax
any
Examples
example.org {
whoami
any
}
A dig +nocmd ANY example.org +noall +answer
now returns:
example.org. 8482 IN HINFO "ANY obsoleted" "See RFC 8482"