Update gpg check command to use hkps by default (#260)

Fix #255

Reviewed-on: https://gitea.com/gitea/docs/pulls/260
This commit is contained in:
Lunny Xiao
2025-08-12 16:57:24 +00:00
parent 0552f4523c
commit c13d82ccc3
21 changed files with 22 additions and 22 deletions

View File

@@ -46,7 +46,7 @@ Gitea signs all binaries with a [GPG key](https://keys.openpgp.org/search?q=teab
To validate the binary, download the signature file which ends in `.asc` for the binary you downloaded and use the GPG command line tool.
```sh
gpg --keyserver keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
gpg --keyserver hkps://keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
gpg --verify gitea-@version@-linux-amd64.asc gitea-@version@-linux-amd64
```