mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-04-01 07:25: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.
|
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
|
## Version 2.1.1
|
||||||
|
|
||||||
- Add a set of Dockerfile contributed by the community
|
- 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
|
# weight should in (0, 100], if upstream_selector is random, weight will be ignored
|
||||||
|
|
||||||
## Google's productive resolver, good ECS, bad DNSSEC
|
## Google's resolver, good ECS, good DNSSEC
|
||||||
#[[upstream.upstream_google]]
|
#[[upstream.upstream_ietf]]
|
||||||
# url = "https://dns.google.com/resolve"
|
# url = "https://dns.google/dns-query"
|
||||||
# weight = 50
|
# weight = 50
|
||||||
|
|
||||||
## CloudFlare's resolver, bad ECS, good DNSSEC
|
## CloudFlare's resolver, bad ECS, good DNSSEC
|
||||||
@@ -48,11 +48,6 @@ upstream_selector = "random"
|
|||||||
# url = "https://9.9.9.9/dns-query"
|
# url = "https://9.9.9.9/dns-query"
|
||||||
# weight = 50
|
# 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
|
## CloudFlare's resolver for Tor, available only with Tor
|
||||||
## Remember to disable ECS below when using Tor!
|
## Remember to disable ECS below when using Tor!
|
||||||
## Blog: https://blog.cloudflare.com/welcome-hidden-resolver/
|
## Blog: https://blog.cloudflare.com/welcome-hidden-resolver/
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ func main() {
|
|||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
if *showVersion {
|
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
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "2.1.1"
|
VERSION = "2.1.2"
|
||||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -24,6 +24,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "2.1.1"
|
VERSION = "2.1.2"
|
||||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user