fix: Removed easyhandshake as it doesn't have hip5 support
All checks were successful
Build Docker / Build Docker (push) Successful in 22s

This commit is contained in:
Nathan Woodburn 2023-12-16 22:11:25 +11:00
parent cb9b0aac3d
commit c452a7daaa
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
3 changed files with 4 additions and 17 deletions

View File

@ -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 |

View File

@ -58,16 +58,9 @@
</header>
<section id="intro" style="margin: 100px;margin-top: 20vh;">
<div class="text-center">
<h1 class="text-center" style="margin-bottom: 50px;">HNS DoH</h1>
<h1 class="text-center" style="margin-bottom: 50px;font-size: 60px;">HNS DoH</h1>
<h2 class="text-center" style="margin-bottom: 50px;">Welcome to HNS DoH, your gateway to Handshake domains.</h2>
<p>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.<br>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.</p>
<h1 style="margin-top: 50px;">Upstream DNS provided by</h1>
<ul class="list-group text-start">
<li class="list-group-item"><span>Nathan.Woodburn/</span></li>
<li class="list-group-item"><span>EasyHandshake</span></li>
<li class="list-group-item"><span>HNS DNS</span></li>
<li class="list-group-item"><span>HNS NS</span></li>
</ul><a class="btn btn-primary" role="button" href="#providers" style="margin-top: 50px;">More Info</a>
</div>
</section>
<section id="setup" style="min-height: 400px;padding-top: 10vh;text-align: center;margin-right: 10%;margin-left: 10%;" data-bs-target="#navcol-5" data-bs-smooth-scroll="true">
@ -245,13 +238,6 @@
<td>Yes</td>
<td title="Resolve crosschain domains">Yes</td>
</tr>
<tr>
<td><a href="https://easyhandshake.com/" style="color: rgb(255,255,255);" target="_blank">EasyHandshake</a></td>
<td>Yes</td>
<td>No</td>
<td>No</td>
<td title="Resolve crosschain domains">No</td>
</tr>
<tr>
<td><a href="https://hnsdns.com/" style="color: rgb(255,255,255);" target="_blank">HNS DNS</a></td>
<td>Yes</td>

View File

@ -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;
}