Optionally disable tunneldns http response caching to fix #745
This commit is contained in:
parent
c95959e845
commit
a7e2b29fa2
|
@ -4,6 +4,7 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
"os"
|
||||||
|
|
||||||
"github.com/coredns/coredns/core/dnsserver"
|
"github.com/coredns/coredns/core/dnsserver"
|
||||||
"github.com/coredns/coredns/plugin"
|
"github.com/coredns/coredns/plugin"
|
||||||
|
@ -90,12 +91,19 @@ func CreateListener(address string, port uint16, upstreams []string, bootstraps
|
||||||
upstreamList = append(upstreamList, upstream)
|
upstreamList = append(upstreamList, upstream)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Create a local cache with HTTPS proxy plugin
|
// Create a local cache with HTTPS proxy plugin
|
||||||
chain := cache.New()
|
chain := cache.New()
|
||||||
chain.Next = ProxyPlugin{
|
chain.Next = ProxyPlugin{
|
||||||
Upstreams: upstreamList,
|
Upstreams: upstreamList,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Optionally disable http response caching
|
||||||
|
if os.Getenv("DISABLE_TUNNELDNS_CACHE") == "true" {
|
||||||
|
chain.Next = ProxyPlugin{}
|
||||||
|
}
|
||||||
|
|
||||||
// Format an endpoint
|
// Format an endpoint
|
||||||
endpoint := "dns://" + net.JoinHostPort(address, strconv.FormatUint(uint64(port), 10))
|
endpoint := "dns://" + net.JoinHostPort(address, strconv.FormatUint(uint64(port), 10))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue