Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
shinosaki committed Oct 15, 2023
1 parent 9c9e78d commit f938848
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]
```
Expand Down

0 comments on commit f938848

Please sign in to comment.