-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ KeyHoarder is the open-source OpenPGP keyserver software. It provides HKP keyser | |
1. Set `SITE_NAME` from `wrangler.toml`. | ||
```toml | ||
[vars] | ||
SITE_NAME = "My OpenPGP Key Server" | ||
SITE_NAME = "My OpenPGP Keyserver" | ||
``` | ||
1. Create KV namespaces. and append KV's id to `wrangler.toml` | ||
```bash | ||
|
@@ -23,13 +23,21 @@ KeyHoarder is the open-source OpenPGP keyserver software. It provides HKP keyser | |
$ npm run deploy | ||
``` | ||
|
||
## Fetch key with GnuPG | ||
1. Upload your key | ||
2. Search key with GnuPG | ||
- `--keyserver`: Your key server hostname | ||
- `--search-keys`: Your OpenPGP key's email address | ||
## Send/Search key with GnuPG | ||
- `--keyserver`: Your keyserver hostname | ||
- `--search-keys`: Your OpenPGP key's email address | ||
|
||
Example: | ||
### Create key | ||
```bash | ||
$ gpg --full-key-gen | ||
``` | ||
|
||
### Send key to your keyserver | ||
```bash | ||
$ gpg --keyserver https://keys.example.com --send-keys <Your key's fingerprint> | ||
``` | ||
### Search key | ||
```bash | ||
$ gpg --keyserver https://keys.example.com --search-keys [email protected] | ||
``` | ||
|