-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheblocker-coredns.go
70 lines (64 loc) · 2.06 KB
/
eblocker-coredns.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
* Copyright 2024 eBlocker Open Source UG (haftungsbeschraenkt)
*
* Licensed under the EUPL, Version 1.2 or - as soon they will be
* approved by the European Commission - subsequent versions of the EUPL
* (the "License"); You may not use this work except in compliance with
* the License. You may obtain a copy of the License at:
*
* https://joinup.ec.europa.eu/page/eupl-text-11-12
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package main
import (
_ "github.com/coredns/coredns/plugin/bufsize"
_ "github.com/coredns/coredns/plugin/cache"
_ "github.com/coredns/coredns/plugin/debug"
_ "github.com/coredns/coredns/plugin/errors"
_ "github.com/coredns/coredns/plugin/forward"
_ "github.com/coredns/coredns/plugin/hosts"
_ "github.com/coredns/coredns/plugin/log"
_ "github.com/coredns/coredns/plugin/metadata"
_ "github.com/coredns/coredns/plugin/pprof"
_ "github.com/coredns/coredns/plugin/timeouts"
_ "github.com/coredns/coredns/plugin/view"
_ "github.com/eblocker/eblocker-coredns/domainfilter"
_ "github.com/eblocker/eblocker-coredns/filterstats"
_ "github.com/eblocker/eblocker-coredns/resolverstats"
log "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/coremain"
)
var directives = []string{
"metadata",
"timeouts",
"bufsize",
"debug",
"pprof",
"errors",
"log",
"hosts",
"filterstats",
"domainfilter", // results depend on the client => may not be cached
"cache",
"resolverstats",
"forward",
"view",
}
// init sets up a minimal set of CoreDNS plugins
func init() {
dnsserver.Directives = directives
}
// main starts the CoreDNS server
func main() {
updater := NewConfigUpdater()
if err := updater.Start(); err != nil {
log.Fatalf("Error starting the config updater: %v", err)
}
coremain.Run()
}