-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (57 loc) · 2.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>HectoDNS | a DNS server for fast clients and Unix</title>
</meta>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="main">
<h2>HectoDNS | a DNS server for fast clients and Unix</h2>
<nav>
<a href="/index.html">Readme</a> |
<a href="/config.html">Configuration</a> |
<a href="/signals.html">Signals</a> |
<a href="/design.html">Design</a>
</nav>
<p>
HectoDNS is a DNS server that chains DNS applications designed to serve fast
clients on low-latency, high-bandwidth connections.
</p>
<h3>Features</h3>
<ul>
<li>
<p>
Support of multiple listeners within a single process: <i>hectodns</i> can start several
servers with independent resolution chain.
</p>
</li>
<li>
<p>
Process management: <i>hectodns</i> will reap and restart resolvers that die from broken apps.
There is no need to manage multiple processes yourself. Server can be configured to spawn any
number of resolver processes, independently from the other resolvers in a chain.
</p>
</li>
<li>
<p>
Does not care if your resolver application is thread-safe, resolvers are run within
their own isolated address space and only serve one request at a time for maximum
robustness.
</p>
</li>
</ul>
<h3>Install</h3>
<p>At this moment installation is available only from the source code:</p>
<code>go install github.com/hectodns/hectodns</code>
<h3>Usage</h3>
<h3>Contact</h3>
<p>
All feedback (bug reports, user/development discussion, patches, pull requests)
is managed through the GitHub <a href="https://github.com/hectodns/hectodns">issues</a>.
</p>
</div>
<body>
</html>