mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
* Don't number the plugins The number is not needed, because the ordering is already specified. It's also annoying when you move plugins, because you need to renumber them. Remove this. 'go gen' shows no changes in the generated files, meaning this just works. * better naming
52 lines
1.1 KiB
INI
52 lines
1.1 KiB
INI
# 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.
|
|
|
|
# How to rebuild with updated plugin configurations:
|
|
# Modify the list below and run `go gen && go build`
|
|
|
|
# The parser takes the input format of
|
|
# <plugin-name>:<package-name>
|
|
# Or
|
|
# <plugin-name>:<fully-qualified-package-name>
|
|
#
|
|
# External plugin example:
|
|
# log:github.com/coredns/coredns/plugin/log
|
|
# Local plugin example:
|
|
# log:log
|
|
|
|
tls:tls
|
|
root:root
|
|
bind:bind
|
|
debug:debug
|
|
trace:trace
|
|
health:health
|
|
pprof:pprof
|
|
prometheus:metrics
|
|
errors:errors
|
|
log:log
|
|
autopath:autopath
|
|
dnstap:dnstap
|
|
chaos:chaos
|
|
cache:cache
|
|
rewrite:rewrite
|
|
loadbalance:loadbalance
|
|
dnssec:dnssec
|
|
reverse:reverse
|
|
hosts:hosts
|
|
federation:federation
|
|
kubernetes:kubernetes
|
|
file:file
|
|
auto:auto
|
|
secondary:secondary
|
|
etcd:etcd
|
|
proxy:proxy
|
|
erratic:erratic
|
|
whoami:whoami
|
|
startup:github.com/mholt/caddy/startupshutdown
|
|
shutdown:github.com/mholt/caddy/startupshutdown
|