cupidgpg/views/index.html

32 lines
974 B
HTML
Raw Normal View History

2024-07-27 12:55:13 +02:00
<!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>
2024-07-27 15:33:31 +02:00
<ul id="keyservers">
2024-07-27 12:55:13 +02:00
{{#each keys}}
2024-07-27 15:33:31 +02:00
<li><a href="{{ url }}">{{ domain }}</a></li>
2024-07-27 12:55:13 +02:00
{{/each}}
</ul>
<p>
point is to reduce situations when one keyserver has a key but another one which you use, doesnt
</p>
2024-07-27 15:33:31 +02:00
<h2>privacy</h2>
2024-07-27 12:55:13 +02:00
<p>
2024-07-27 15:33:31 +02:00
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
2024-07-27 12:55:13 +02:00
</p>
</body>
</html>