forked from DigitaleGesellschaft/DNS-Resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
284 lines (255 loc) · 7.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>This is a public secure DNS resolver | Digital Society / Digitale Gesellschaft</title>
<style>
body {
background-image: url(https://www.digitale-gesellschaft.ch/wp-content/themes/digiges-sage/dist/images/stripes_contest.png);
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 1.5;
color: #333;
margin: 0;
}
h1 {
font-family: "Open Sans";
font-weight: 400;
line-height: 1.1;
font-size: 20px;
padding: 0px;
padding-bottom: 8px;
margin: 0px;
margin-bottom: 18px;
color: #333;
}
h2 {
font-family: "Open Sans";
font-weight: 600;
text-transform: uppercase;
line-height: 1.1;
font-size: 16px;
padding: 0px;
padding-bottom: 8px;
margin: 0px;
margin-bottom: 2rem;
color: #009C3A;
}
h3 {
font-family: "Open Sans";
font-weight: 400;
line-height: 1.1;
box-sizing: border-box;
padding: 5px 10px;
margin: 4px -4px 1rem 45%;
text-align: right;
background-color: #074;
color: #fff;
font-size: 13px;
}
p {
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
}
ul {
list-style: none;
padding: 0;
padding-left: 5px;
margin: 0;
box-sizing: border-box;
}
li {
position: relative;
padding-bottom: 2px;
padding-left: 1.3em;
box-sizing: border-box;
display: list-item;
list-style-type: none;
}
li:before {
position: absolute;
content: ">";
font-family: Helvetica;
font-size: 10px;
padding-top: 0.2rem;
margin-left: -1em;
width: 1.3em;
color: #737173;
}
a {
color: #074;
padding: 0.2em;
text-decoration: none;
}
a:hover {
color: #002b18;
text-decoration: underline;
}
header {
height: 82px;
border-bottom: 1px solid #ddd;
padding-bottom: 20px;
}
#banner {
width: 95%;
max-width: 825px;
padding: 15px;
margin-left: auto;
margin-right: auto;
}
main {
width: 95%;
max-width: 825px;
padding: 10px;
margin-left: auto;
margin-right: auto;
}
aside {
background-color: #fff;
border: 1px solid #ddd;
padding: 4px;
margin: 10px;
margin-top: 0px;
overflow: hidden;
}
@media (min-width: 800px) {
aside {
width: 225px;
}
}
article {
background-color: #fff;
border: 1px solid #ddd;
padding: 15px;
margin: 10px;
margin-top: 0px;
}
@media (min-width: 800px) {
article {
float: left;
width: 60%;
max-width: 600px;
margin-bottom: 50px;
}
}
footer {
clear: both;
}
#contact {
padding: 10px 15px 20px 108px;
background-image: url(https://www.digitale-gesellschaft.ch/wp-content/themes/digiges-sage/dist/images/tanne_contest.png);
height: 187px;
}
#license {
display: block;
padding: 10px 10px 10px 108px;
background-color: #292e34;
margin-top: -14px;
}
#license p {
font-family: "Open Sans";
font-size: 92%;
height: 18px;
margin: 0px;
color: #fff;
}
#license a {
color: #fff;
text-decoration: underline;
}
#license a:hover {
color: #fff;
text-decoration: underline;
}
</style>
<style media="print">
aside {
display: none;
}
header {
width: 100%;
left: 0;
margin: 0;
}
#banner a {
margin: 0;
}
main {
width: 100%;
margin: 0;
float: none;
border: none;
}
article {
width: 90%;
margin: 0;
float: none;
border: none;
}
#contact {
padding: 0;
}
#license {
display: none;
}
</style>
</head>
<body>
<header>
<div id="banner">
<a href="https://www.digitale-gesellschaft.ch">
<img src="https://www.digitale-gesellschaft.ch/wp-content/themes/digiges-sage/dist/images/digiges-logo-text.svg"
alt="Digital Society / Digitale Gesellschaft (Logo)">
</a>
</div>
</header>
<main>
<article>
<h1>This is a public secure DNS resolver</h1>
<p>You can use this service too! Find instructions for your devices <a href="https://www.digitale-gesellschaft.ch/dns/">here</a>.</p>
<h1>Privacy Notice</h1>
<p>All our publicly available DoT DNS instances do not log anything. Our DoH DNS resolver instances maintain a log file which only logs time, HTTP status code and a country code per request.</p>
<ul>
<li>We do not aggregate any data.</li>
<li>We do not retain, sell or transfer any personal information, IP addresses or other user identifiers or user query patterns.</li>
<li>We do not combine query data with any other data in any way that can be used to identify individual end users.</li>
<li>We do not sell, license, sublicense or grant any rights to user data to any other person or entity.</li>
<li>We do support DNS Query Name Minimisation (RFC 7816)</li>
<li>We do keep statistical data of DNS queries. Specifically we generate graphs of return code, replay time, flags, class, opcode, type, cache hit, request size for stability monitoring and impact measurement.</li>
</ul>
<p>We do not use any DNS blocking list.</p>
</article>
<aside>
<h3>More Information</h3>
<ul>
<li><a href="https://www.digitale-gesellschaft.ch/dns">Secure DNS Project Site</a></li>
<li><a href="https://www.digitale-gesellschaft.ch/dns">Annual Transparency Report</a></li>
</ul>
</aside>
<aside>
<h3>Help</h3>
<ul>
<li><a href="https://github.com/DigitaleGesellschaft/DNS-Resolver#technical-information--configuration-how-tos">How Tos</a></li>
</ul>
</aside>
<aside>
<h3>Our Servers</h3>
<ul>
<li><a href="https://dns1.digitale-gesellschaft.ch/">Secure DNS Resolver 1</a></li>
<li><a href="https://dns2.digitale-gesellschaft.ch/">Secure DNS Resolver 2</a></li>
</ul>
</aside>
</main>
<footer>
<section id="contact">
<h2>Digital Society / Digitale Gesellschaft</h2>
</section>
<div id="license">
<p>This site is licensed under <a href="http://creativecommons.org/licenses/by-sa/4.0/deed.de">Creative Commons BY-SA</a>.</p>
</div>
</footer>
</body>
</html>