mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-04-01 03:05:41 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
268e203540 | ||
|
|
21264c78cf | ||
|
|
ae74f1efe5 | ||
|
|
d02c31d3ee | ||
|
|
edc86f32e5 |
@@ -4,6 +4,11 @@ This Changelog records major changes between versions.
|
||||
|
||||
Not all changes are recorded. Please check git log for details.
|
||||
|
||||
## Version 2.1.2
|
||||
|
||||
- Update address for google's resolver
|
||||
- Fix a typo
|
||||
|
||||
## Version 2.1.1
|
||||
|
||||
- Add a set of Dockerfile contributed by the community
|
||||
|
||||
@@ -18,9 +18,9 @@ upstream_selector = "random"
|
||||
|
||||
# weight should in (0, 100], if upstream_selector is random, weight will be ignored
|
||||
|
||||
## Google's productive resolver, good ECS, bad DNSSEC
|
||||
#[[upstream.upstream_google]]
|
||||
# url = "https://dns.google.com/resolve"
|
||||
## Google's resolver, good ECS, good DNSSEC
|
||||
#[[upstream.upstream_ietf]]
|
||||
# url = "https://dns.google/dns-query"
|
||||
# weight = 50
|
||||
|
||||
## CloudFlare's resolver, bad ECS, good DNSSEC
|
||||
@@ -48,11 +48,6 @@ upstream_selector = "random"
|
||||
# url = "https://9.9.9.9/dns-query"
|
||||
# weight = 50
|
||||
|
||||
## Google's experimental resolver, good ECS, good DNSSEC
|
||||
#[[upstream.upstream_ietf]]
|
||||
# url = "https://dns.google.com/experimental"
|
||||
# weight = 50
|
||||
|
||||
## CloudFlare's resolver for Tor, available only with Tor
|
||||
## Remember to disable ECS below when using Tor!
|
||||
## Blog: https://blog.cloudflare.com/welcome-hidden-resolver/
|
||||
|
||||
@@ -89,7 +89,7 @@ func main() {
|
||||
flag.Parse()
|
||||
|
||||
if *showVersion {
|
||||
fmt.Printf("doh-server %s\nHomepage: https://github.com/m13253/dns-over-https\n", VERSION)
|
||||
fmt.Printf("doh-client %s\nHomepage: https://github.com/m13253/dns-over-https\n", VERSION)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
package main
|
||||
|
||||
const (
|
||||
VERSION = "2.1.1"
|
||||
VERSION = "2.1.2"
|
||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||
)
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
package main
|
||||
|
||||
const (
|
||||
VERSION = "2.1.1"
|
||||
VERSION = "2.1.2"
|
||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user