cupidgpg/views/index.html

32 lines
1003 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:52:19 +02:00
your requests are fairly private as nothing but your IP is exposed to keyservers to circumvent DoS attacks via this service. you can use an http proxy if that concerns you
2024-07-27 15:33:31 +02:00
</p>
<h2>abuse</h2>
<p>
2024-07-27 15:52:19 +02:00
this website does not store keys but in temporary cache. refer to&nbsp;<a href='#keyservers'>upstream servers</a>&nbsp;for that
2024-07-27 12:55:13 +02:00
</p>
</body>
</html>