feat: improve index.html a little bit
This commit is contained in:
parent
a351dd6aee
commit
e5c8dc252a
|
@ -9,6 +9,10 @@ export class ViewsController {
|
|||
@Get()
|
||||
@Render('index.html')
|
||||
index() {
|
||||
return { keys: this.allKeysProvider.getAll().map((x) => x.url) }
|
||||
return {
|
||||
keys: this.allKeysProvider.getAll()
|
||||
.map(x => x.url)
|
||||
.map(x => ({ url: x, domain: x.replace(/^\S+:\/\//, '') }))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,18 +10,23 @@
|
|||
<p>
|
||||
this is a GPG keyserver that serves keys from all the following servers combined:
|
||||
</p>
|
||||
<ul>
|
||||
<ul id="keyservers">
|
||||
{{#each keys}}
|
||||
<li>{{ this }}</li>
|
||||
<li><a href="{{ url }}">{{ domain }}</a></li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<p>
|
||||
point is to reduce situations when one keyserver has a key but another one which you use, doesnt
|
||||
</p>
|
||||
|
||||
<h2>transparency</h2>
|
||||
<h2>privacy</h2>
|
||||
<p>
|
||||
a specific instance (like this one) may not be fully transparent. in fact, its recommended for you to make your own instance
|
||||
by default, you should not trust third party servers to be fully private. your requests are fairly private as nothing but your IP is exposed to keyservers.
|
||||
</p>
|
||||
|
||||
<h2>abuse</h2>
|
||||
<p>
|
||||
this website does not store keys but temporary cache. refer to <a href='#keyservers'>upstream servers</a> for that
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue