You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
2.4 KiB

Sign merges, CRUD, Wiki and Repository initialisation with gpg key (#7631) This PR fixes #7598 by providing a configurable way of signing commits across the Gitea instance. Per repository configurability and import/generation of trusted secure keys is not provided by this PR - from a security PoV that's probably impossible to do properly. Similarly web-signing, that is asking the user to sign something, is not implemented - this could be done at a later stage however. ## Features - [x] If commit.gpgsign is set in .gitconfig sign commits and files created through repofiles. (merges should already have been signed.) - [x] Verify commits signed with the default gpg as valid - [x] Signer, Committer and Author can all be different - [x] Allow signer to be arbitrarily different - We still require the key to have an activated email on Gitea. A more complete implementation would be to use a keyserver and mark external-or-unactivated with an "unknown" trust level icon. - [x] Add a signing-key.gpg endpoint to get the default gpg pub key if available - Rather than add a fake web-flow user I've added this as an endpoint on /api/v1/signing-key.gpg - [x] Try to match the default key with a user on gitea - this is done at verification time - [x] Make things configurable? - app.ini configuration done - [x] when checking commits are signed need to check if they're actually verifiable too - [x] Add documentation I have decided that adjusting the docker to create a default gpg key is not the correct thing to do and therefore have not implemented this.
5 years ago
  1. APP_NAME = Gitea: Git with a cup of tea
  2. RUN_MODE = prod
  3. [database]
  4. DB_TYPE = sqlite3
  5. PATH = integrations/gitea-integration-sqlite/gitea.db
  6. [indexer]
  7. ISSUE_INDEXER_PATH = integrations/indexers-sqlite/issues.bleve
  8. REPO_INDEXER_ENABLED = true
  9. REPO_INDEXER_PATH = integrations/indexers-sqlite/repos.bleve
  10. [queue.code_indexer]
  11. TYPE = immediate
  12. [repository]
  13. ROOT = {{REPO_TEST_DIR}}integrations/gitea-integration-sqlite/gitea-repositories
  14. [repository.local]
  15. LOCAL_COPY_PATH = tmp/local-repo-sqlite
  16. LOCAL_WIKI_PATH = tmp/local-wiki-sqlite
  17. [repository.signing]
  18. SIGNING_KEY = none
  19. [server]
  20. SSH_DOMAIN = localhost
  21. HTTP_PORT = 3003
  22. ROOT_URL = http://localhost:3003/
  23. DISABLE_SSH = false
  24. SSH_LISTEN_HOST = localhost
  25. SSH_PORT = 2203
  26. START_SSH_SERVER = true
  27. LFS_START_SERVER = true
  28. LFS_CONTENT_PATH = integrations/gitea-integration-sqlite/data
  29. OFFLINE_MODE = false
  30. LFS_JWT_SECRET = Tv_MjmZuHqpIY6GFl12ebgkRAMt4RlWt0v4EHKSXO0w
  31. APP_DATA_PATH = integrations/gitea-integration-sqlite/data
  32. ENABLE_GZIP = true
  33. BUILTIN_SSH_SERVER_USER = git
  34. [attachment]
  35. PATH = integrations/gitea-integration-sqlite/data
  36. [mailer]
  37. ENABLED = true
  38. MAILER_TYPE = dummy
  39. FROM = sqlite-integration-test@gitea.io
  40. [service]
  41. REGISTER_EMAIL_CONFIRM = false
  42. ENABLE_NOTIFY_MAIL = true
  43. DISABLE_REGISTRATION = false
  44. ENABLE_CAPTCHA = false
  45. REQUIRE_SIGNIN_VIEW = false
  46. DEFAULT_KEEP_EMAIL_PRIVATE = false
  47. DEFAULT_ALLOW_CREATE_ORGANIZATION = true
  48. NO_REPLY_ADDRESS = noreply.example.org
  49. [picture]
  50. DISABLE_GRAVATAR = false
  51. ENABLE_FEDERATED_AVATAR = false
  52. AVATAR_UPLOAD_PATH = integrations/gitea-integration-sqlite/data/avatars
  53. REPOSITORY_AVATAR_UPLOAD_PATH = integrations/gitea-integration-sqlite/data/repo-avatars
  54. [session]
  55. PROVIDER = file
  56. PROVIDER_CONFIG = integrations/gitea-integration-sqlite/data/sessions
  57. [log]
  58. MODE = test,file
  59. ROOT_PATH = sqlite-log
  60. REDIRECT_MACARON_LOG = true
  61. ROUTER = ,
  62. MACARON = ,
  63. XORM = file
  64. [log.test]
  65. LEVEL = Info
  66. COLORIZE = true
  67. [log.file]
  68. LEVEL = Debug
  69. [security]
  70. INSTALL_LOCK = true
  71. SECRET_KEY = 9pCviYTWSb
  72. INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE0OTI3OTU5ODN9.OQkH5UmzID2XBdwQ9TAI6Jj2t1X-wElVTjbE7aoN4I8
  73. [oauth2]
  74. JWT_SECRET = KZb_QLUd4fYVyxetjxC4eZkrBgWM2SndOOWDNtgUUko