cupidgpg/views/index.html

63 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cupid GPG keyserver</title>
</head>
<body>
<h1>Cupid</h1>
<p>
this is a GPG keyserver proxy that serves keys from all the following servers combined:
</p>
<ul id="keyservers">
{{#each keys}}
<li><a href="{{ url }}">{{ domain }}</a></li>
{{/each}}
<li>this list is dynamic - it differs with different Cupid versions that implement different keyservers</li>
</ul>
<p>
point is to reduce situations when one keyserver has a key but another one which you use, doesnt
</p>
<h2>compilance</h2>
<p>
this proxy implements some methods from the latest (as of july 2024) &nbsp;<a target='_blank' href='https://www.ietf.org/archive/id/draft-gallagher-openpgp-hkp-05.html'>OpenPGP HTTP Keyserver Protocol</a>:
</p>
<ul>
<li>
<a href="https://www.ietf.org/archive/id/draft-gallagher-openpgp-hkp-05.html#name-legacy-request-format">Legacy request format</a>
</li>
<li>
<a href="https://www.ietf.org/archive/id/draft-gallagher-openpgp-hkp-05.html#name-the-get-operation">"get" operation</a>
</li>
<li>
<a href="https://www.ietf.org/archive/id/draft-gallagher-openpgp-hkp-05.html#name-the-index-operation">"index" operation</a>
</li>
</ul>
<h2>usage</h2>
<p>
to set this as your keyserver, add this to &nbsp;<code>~/.gnupg/gpg.conf</code>&nbsp; (create if doesnt exist):
<pre>keyserver {{host}}</pre>
</p>
<p>
to search for &nbsp;<code>someone@example.com</code>
<pre>curl {{protocol}}://{{host}}/pks/lookup\?search\=someone@example.com\&op\=index</pre>
</p>
<p>
to get key with ID &nbsp;<code>00000000000000000000000000000000000000000</code>
<pre>curl {{protocol}}://{{host}}/pks/lookup\?search\=00000000000000000000000000000000000000000\&op\=get</pre>
</p>
<h2>privacy</h2>
<p>
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
</p>
<h2>abuse</h2>
<p>
this website does not store keys but in temporary cache. refer to &nbsp;<a href='#keyservers'>upstream servers</a> &nbsp;for that
</p>
</body>
</html>