diff --git a/README.md b/README.md index b1fd04a..1589d95 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ Load balancing to the following DNS-over-HTTPS providers: | Provider | URL | DoH JSON | DoH Wire | DoT | DNS | HIP05 | | ---------------- | ---------------------------------------- | -------- | -------- | --- | --- | ----- | | Nathan.Woodburn/ | https://doh.hnshosting.au/dns-query | Yes | Yes | Yes | Yes | Yes | -| EasyHandshake | https://easyhandshake.com:8053/dns-query | Yes | Yes | No | No | No | | HNS DNS | https://doh.hnsdns.com/dns-query | Yes | Yes | No | Yes | Yes | | HNS NS | https://hnsns.net/dns-query | Yes | Yes | No | No | Yes | @@ -29,6 +28,7 @@ Load balancing to the following DNS-over-HTTPS providers: ## Maybe future nodes | Provider | Reason to not be added | URL | DoH JSON | DoH Wire | DoT | DNS | HIP05 | | ---------------- | -------------------------- | ---------------------------------------- | -------- | -------- | --- | --- | ----- | +| EasyHandshake | Doesn't have HIP5 support | https://easyhandshake.com:8053/dns-query | Yes | Yes | No | No | No | | Impervious | Doesn't support JSON DoH | https://hs.dnssec.dev/dns-query | No | Yes | Yes | No | Yes | | HDNS | Only supports NB domains | https://hdns.io | No | Yes | No | Yes | No | diff --git a/content/index.html b/content/index.html index 45e38c2..80dd327 100644 --- a/content/index.html +++ b/content/index.html @@ -58,16 +58,9 @@
-

HNS DoH

+

HNS DoH

Welcome to HNS DoH, your gateway to Handshake domains.

Introducing our cutting-edge DNS over HTTPS (DoH) service, a revolutionary approach to secure and efficient internet communication. In a digital landscape where privacy and reliability are paramount, our service stands out by integrating multiple upstream providers, guaranteeing high availability.
By strategically harnessing the strengths of diverse DNS providers, we ensure that your online activities remain both private and swift. Say hello to a new era of accessing Handshake domains.

-

Upstream DNS provided by

- More Info
@@ -245,13 +238,6 @@ Yes Yes - - EasyHandshake - Yes - No - No - No - HNS DNS Yes diff --git a/nginx.conf b/nginx.conf index c3a6881..244fd34 100644 --- a/nginx.conf +++ b/nginx.conf @@ -51,7 +51,8 @@ server { # Load balancing each node will be timed out for 10 minutes if it fails upstream main { server 127.0.0.1:8001 max_fails=1 fail_timeout=10m; - server 127.0.0.1:8002 max_fails=1 fail_timeout=10m; + # Disabled for now because it doesn't support HIP5 + # server 127.0.0.1:8002 max_fails=1 fail_timeout=10m; server 127.0.0.1:8003 max_fails=1 fail_timeout=10m; server 127.0.0.1:8004 max_fails=1 fail_timeout=10m; }