diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-07-05 21:36:55 -0400 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2018-07-06 09:36:54 +0800 |
commit | 61b40520ba9024ee4e8592345eec062795c6346f (patch) | |
tree | 5bbd48341b7d7b6ca2662ce81c546c623fadead9 /docs | |
parent | f1d6a1fffc9d9712f0973b51c850f10d0872a7ea (diff) | |
download | gitea-61b40520ba9024ee4e8592345eec062795c6346f.tar.gz gitea-61b40520ba9024ee4e8592345eec062795c6346f.zip |
GPG verification docs (#4381)
* GPG verification docs
* update URL
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/installation/from-binary.en-us.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/content/doc/installation/from-binary.en-us.md b/docs/content/doc/installation/from-binary.en-us.md index 9c88592155..f393333e4e 100644 --- a/docs/content/doc/installation/from-binary.en-us.md +++ b/docs/content/doc/installation/from-binary.en-us.md @@ -21,10 +21,18 @@ the destination platform from the [downloads page](https://dl.gitea.io/gitea), c the URL and replace the URL within the commands below: ```sh -wget -O gitea https://dl.gitea.io/gitea/1.4.2/gitea-1.4.2-linux-amd64 +wget -O gitea https://dl.gitea.io/gitea/1.4.3/gitea-1.4.3-linux-amd64 chmod +x gitea ``` +## Verify GPG signature +Gitea signs all binaries with a [GPG key](https://pgp.mit.edu/pks/lookup?op=vindex&fingerprint=on&search=0x2D9AE806EC1592E2) to prevent against unwanted modification of binaries. 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 pgp.mit.edu --recv 0x2D9AE806EC1592E2 +gpg --verify gitea-1.5.0-linux-amd64.asc gitea-1.5.0-linux-amd64 +``` + ## Test After getting a binary, it can be tested with `./gitea web` or moved to a permanent |