32 lines
974 B
HTML
32 lines
974 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Cupid GPG server</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Cupid</h1>
|
|
<p>
|
|
this is a GPG keyserver that serves keys from all the following servers combined:
|
|
</p>
|
|
<ul id="keyservers">
|
|
{{#each keys}}
|
|
<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>privacy</h2>
|
|
<p>
|
|
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> |