mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
Add owncast documentation
This commit is contained in:
parent
0610a611c5
commit
7feecc1a2b
1 changed files with 45 additions and 0 deletions
45
content/guides/owncast.md
Normal file
45
content/guides/owncast.md
Normal file
|
@ -0,0 +1,45 @@
|
|||
# Adding an Owncast proof
|
||||
|
||||
Let's add a decentralized Owncast proof to your OpenPGP keys.
|
||||
|
||||
[[toc]]
|
||||
|
||||
## Update your Owncast server configuration
|
||||
|
||||
On your server, add the following lines to the `instanceDetails > socialHandles` entry in the `config.yaml` (make sure to replace FINGERPRINT):
|
||||
|
||||
```
|
||||
- platform: keyoxide
|
||||
url: https://keyoxide.org/FINGERPRINT
|
||||
```
|
||||
|
||||
When not identifying your key by its fingerprint (for example, when using WKD), add the following lines instead:
|
||||
|
||||
```
|
||||
- platform: keyoxide
|
||||
url: https://keyoxide.org/EMAIL#FINGERPRINT
|
||||
```
|
||||
|
||||
## Update the PGP key
|
||||
|
||||
First, edit the key (make sure to replace FINGERPRINT):
|
||||
|
||||
`gpg --edit-key FINGERPRINT`
|
||||
|
||||
Add a new notation:
|
||||
|
||||
`notation`
|
||||
|
||||
Enter the notation (make sure to update with the domain of the Owncast instance):
|
||||
|
||||
`proof@metacode.biz=https://stream.example.org`
|
||||
|
||||
Save the key:
|
||||
|
||||
`save`
|
||||
|
||||
Upload the key to WKD or use the following command to upload the key to [keys.openpgp.org](https://keys.openpgp.org) (make sure to replace FINGERPRINT):
|
||||
|
||||
`gpg --keyserver hkps://keys.openpgp.org --send-keys FINGERPRINT`
|
||||
|
||||
And you're done! Reload your profile page, it should now show a verified Owncast account.
|
Loading…
Reference in a new issue