mirror of
https://github.com/AdguardTeam/AdGuardDNS.git
synced 2025-02-20 11:23:36 +08:00
34 lines
899 B
INI
34 lines
899 B
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
|
|
|
|
bind:bind
|
|
debug:debug
|
|
pprof:pprof
|
|
prometheus:metrics
|
|
errors:errors
|
|
log:log
|
|
ratelimit:github.com/hmage/curly-system/coredns_plugin/ratelimit
|
|
refuseany:github.com/hmage/curly-system/coredns_plugin/refuseany
|
|
dnsfilter:github.com/hmage/curly-system/coredns_plugin
|
|
cache:cache
|
|
file:file
|
|
forward:forward
|