GPG/SSH Commit Signatures
Gitea will verify gpg/ssh commit signatures in the provided tree by checking if the commits are signed by a key within the Gitea database, or if the commit matches the default key for Git.
Additionally Gitea will verify commits signed by ssh keys, which public keys are part of TRUSTED_SSH_KEYS.
Keys are not checked to determine if they have expired or revoked. Keys are also not checked with keyservers.
A commit will be marked with a grey unlocked icon if no key can be found to verify it. If a commit is marked with a red unlocked icon, it is reported to be signed with a key with an id.
Automatic Signing
Section titled “Automatic Signing”There are a number of places where Gitea will generate commits itself:
- Repository Initialisation
- Wiki Changes
- CRUD actions using the editor or the API
- Merges from Pull Requests
Depending on configuration and server trust you may want Gitea to sign these commits.
Installing and generating a GPG key for Gitea
Section titled “Installing and generating a GPG key for Gitea”It is up to a server administrator to determine how best to install
a signing key. Gitea generates all its commits using the server git
command at present - and therefore the server gpg will be used for
signing (if configured.) Administrators should review best-practices
for GPG - in particular it is probably advisable to only install a
signing secret subkey without the master signing and certifying secret
key.
Installing and generating a SSH key for Gitea
Section titled “Installing and generating a SSH key for Gitea”You can run ssh-keygen -t ed25519 -f gitea-signing-key to generate the private/public keypair for commit signing without any password. Usually you would store the key next to the gitea configuration, then point SIGNING_KEY to the generated public key /path/to/gitea-signing-key.pub. Gitea generates all its commits using the server git command at present - and therefore the server ssh-keygen will be used for
signing (if configured.)
General Configuration
Section titled “General Configuration”Gitea’s configuration for signing can be found with the
[repository.signing] section of app.ini:
...[repository.signing]SIGNING_KEY = defaultSIGNING_NAME =SIGNING_EMAIL =INITIAL_COMMIT = alwaysCRUD_ACTIONS = pubkey, twofa, parentsignedWIKI = neverMERGES = pubkey, twofa, basesigned, commitssigned
...For SSH commit signing, you need to specify the SIGNING_FORMAT to ssh instead of the default openpgp. SIGNING_NAME and SIGNING_EMAIL are required for verifing the signatures.
This looks like this:
...[repository.signing]SIGNING_KEY = /path/to/gitea-signing-key.pubSIGNING_NAME =SIGNING_EMAIL =SIGNING_FORMAT = sshINITIAL_COMMIT = alwaysCRUD_ACTIONS = pubkey, twofa, parentsignedWIKI = neverMERGES = pubkey, twofa, basesigned, commitssigned.../path/to/gitea-signing-keyis expected to be the private key for/path/to/gitea-signing-key.pubsee here how to generate a new ssh keypair.TRUSTED_SSH_KEYS = ssh-<algorithm> <key>orTRUSTED_SSH_KEYS = ssh-<algorithm> <key1>, ssh-<algorithm> <key2>can be used for rotating the global ssh signing key to continue verifying commits signed by the previous keys.
SIGNING_KEY
Section titled “SIGNING_KEY”The first option to discuss is the SIGNING_KEY. There are three main
options:
none- this prevents Gitea from signing any commitsdefault- Gitea will default to the gpg key configured withingit configKEYID- Gitea will sign commits with the gpg key with the IDKEYID. In this case you should provide aSIGNING_NAMEandSIGNING_EMAILto be displayed for this key./path/to/gitea-signing-key.pub- Gitea will sign commits with the ssh key without the.pubsuffix/path/to/gitea-signing-key. In this case you should provide aSIGNING_NAMEandSIGNING_EMAILto be displayed for this key and setSIGNING_FORMATtossh.
The default option will interrogate git config for
commit.gpgsign option - if this is set, then it will use the results
of the user.signingkey, user.name and user.email as appropriate.
By adjusting Git’s config file within Gitea’s
repositories, SIGNING_KEY=default could be used to provide different
signing keys on a per-repository basis. However, this is clearly not an
ideal UI and therefore subject to change.
INITIAL_COMMIT
Section titled “INITIAL_COMMIT”This option determines whether Gitea should sign the initial commit when creating a repository. The possible values are:
never: Never signpubkey: Only sign if the user has a public keytwofa: Only sign if the user logs in with two factor authenticationalways: Always sign
Options other than never and always can be combined as a comma
separated list. The commit will be signed if all selected options are true.
This options determines if Gitea should sign commits to the Wiki. The possible values are:
never: Never signpubkey: Only sign if the user has a public keytwofa: Only sign if the user logs in with two-factor authenticationparentsigned: Only sign if the parent commit is signed.always: Always sign
Options other than never and always can be combined as a comma
separated list. The commit will be signed if all selected options are true.
CRUD_ACTIONS
Section titled “CRUD_ACTIONS”This option determines if Gitea should sign commits from the web editor or API CRUD actions. The possible values are:
never: Never signpubkey: Only sign if the user has a public keytwofa: Only sign if the user logs in with two-factor authenticationparentsigned: Only sign if the parent commit is signed.always: Always sign
Options other than never and always can be combined as a comma
separated list. The change will be signed if all selected options are true.
MERGES
Section titled “MERGES”This option determines if Gitea should sign merge commits from PRs. The possible options are:
never: Never signpubkey: Only sign if the user has a public keytwofa: Only sign if the user logs in with two-factor authenticationbasesigned: Only sign if the parent commit in the base repo is signed.headsigned: Only sign if the head commit in the head branch is signed.commitssigned: Only sign if all the commits in the head branch to the merge point are signed.approved: Only sign approved merges to a protected branch.always: Always sign
Options other than never and always can be combined as a comma
separated list. The merge will be signed if all selected options are true.
Obtaining the Public Key of the Signing Key
Section titled “Obtaining the Public Key of the Signing Key”The public key used to sign Gitea’s commits can be obtained from the API at:
/api/v1/signing-key.gpgIn cases where there is a repository specific key this can be obtained from:
/api/v1/repos/:username/:reponame/signing-key.gpgFor ssh commit signing the default ssh public key can be obtained via the API at:
/api/v1/signing-key.pub