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.

mysql.ini.tmpl 2.2KB

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.
4 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. APP_NAME = Gitea: Git with a cup of tea
  2. RUN_MODE = prod
  3. [database]
  4. DB_TYPE = mysql
  5. HOST = {{TEST_MYSQL_HOST}}
  6. NAME = {{TEST_MYSQL_DBNAME}}
  7. USER = {{TEST_MYSQL_USERNAME}}
  8. PASSWD = {{TEST_MYSQL_PASSWORD}}
  9. SSL_MODE = disable
  10. [indexer]
  11. ISSUE_INDEXER_TYPE = elasticsearch
  12. ISSUE_INDEXER_CONN_STR = http://elastic:changeme@elasticsearch:9200
  13. ISSUE_INDEXER_PATH = integrations/indexers-mysql/issues.bleve
  14. REPO_INDEXER_ENABLED = true
  15. REPO_INDEXER_PATH = integrations/indexers-mysql/repos.bleve
  16. [repository]
  17. ROOT = integrations/gitea-integration-mysql/gitea-repositories
  18. [repository.local]
  19. LOCAL_COPY_PATH = tmp/local-repo-mysql
  20. LOCAL_WIKI_PATH = tmp/local-wiki-mysql
  21. [repository.signing]
  22. SIGNING_KEY = none
  23. [server]
  24. SSH_DOMAIN = localhost
  25. HTTP_PORT = 3001
  26. ROOT_URL = http://localhost:3001/
  27. DISABLE_SSH = false
  28. SSH_LISTEN_HOST = localhost
  29. SSH_PORT = 2201
  30. START_SSH_SERVER = true
  31. LFS_START_SERVER = true
  32. LFS_CONTENT_PATH = data/lfs-mysql
  33. OFFLINE_MODE = false
  34. LFS_JWT_SECRET = Tv_MjmZuHqpIY6GFl12ebgkRAMt4RlWt0v4EHKSXO0w
  35. APP_DATA_PATH = integrations/gitea-integration-mysql/data
  36. BUILTIN_SSH_SERVER_USER = git
  37. [mailer]
  38. ENABLED = true
  39. MAILER_TYPE = dummy
  40. FROM = mysql-integration-test@gitea.io
  41. [service]
  42. REGISTER_EMAIL_CONFIRM = false
  43. ENABLE_NOTIFY_MAIL = false
  44. DISABLE_REGISTRATION = false
  45. ENABLE_CAPTCHA = false
  46. REQUIRE_SIGNIN_VIEW = false
  47. DEFAULT_KEEP_EMAIL_PRIVATE = false
  48. DEFAULT_ALLOW_CREATE_ORGANIZATION = true
  49. NO_REPLY_ADDRESS = noreply.example.org
  50. ENABLE_NOTIFY_MAIL = true
  51. [picture]
  52. DISABLE_GRAVATAR = false
  53. ENABLE_FEDERATED_AVATAR = false
  54. [session]
  55. PROVIDER = file
  56. PROVIDER_CONFIG = data/sessions-mysql
  57. [log]
  58. MODE = test,file
  59. ROOT_PATH = mysql-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.eyJuYmYiOjE0OTU1NTE2MTh9.hhSVGOANkaKk3vfCd2jDOIww4pUk0xtg9JRde5UogyQ