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.

pgsql.ini.tmpl 2.1KB

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
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. APP_NAME = Gitea: Git with a cup of tea
  2. RUN_MODE = prod
  3. [database]
  4. DB_TYPE = postgres
  5. HOST = {{TEST_PGSQL_HOST}}
  6. NAME = {{TEST_PGSQL_DBNAME}}
  7. USER = {{TEST_PGSQL_USERNAME}}
  8. PASSWD = {{TEST_PGSQL_PASSWORD}}
  9. SCHEMA = {{TEST_PGSQL_SCHEMA}}
  10. SSL_MODE = disable
  11. [indexer]
  12. ISSUE_INDEXER_PATH = integrations/indexers-pgsql/issues.bleve
  13. REPO_INDEXER_ENABLED = true
  14. REPO_INDEXER_PATH = integrations/indexers-pgsql/repos.bleve
  15. [repository]
  16. ROOT = integrations/gitea-integration-pgsql/gitea-repositories
  17. [repository.local]
  18. LOCAL_COPY_PATH = tmp/local-repo-pgsql
  19. LOCAL_WIKI_PATH = tmp/local-wiki-pgsql
  20. [repository.signing]
  21. SIGNING_KEY = none
  22. [server]
  23. SSH_DOMAIN = localhost
  24. HTTP_PORT = 3002
  25. ROOT_URL = http://localhost:3002/
  26. DISABLE_SSH = false
  27. SSH_LISTEN_HOST = localhost
  28. SSH_PORT = 2202
  29. START_SSH_SERVER = true
  30. LFS_START_SERVER = true
  31. LFS_CONTENT_PATH = data/lfs-pgsql
  32. OFFLINE_MODE = false
  33. LFS_JWT_SECRET = Tv_MjmZuHqpIY6GFl12ebgkRAMt4RlWt0v4EHKSXO0w
  34. APP_DATA_PATH = integrations/gitea-integration-pgsql/data
  35. BUILTIN_SSH_SERVER_USER = git
  36. [mailer]
  37. ENABLED = true
  38. MAILER_TYPE = dummy
  39. FROM = pgsql-integration-test@gitea.io
  40. [service]
  41. REGISTER_EMAIL_CONFIRM = false
  42. ENABLE_NOTIFY_MAIL = false
  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. ENABLE_NOTIFY_MAIL = true
  50. [picture]
  51. DISABLE_GRAVATAR = false
  52. ENABLE_FEDERATED_AVATAR = false
  53. [session]
  54. PROVIDER = file
  55. PROVIDER_CONFIG = data/sessions-pgsql
  56. [log]
  57. MODE = test,file
  58. ROOT_PATH = pgsql-log
  59. REDIRECT_MACARON_LOG = true
  60. ROUTER = ,
  61. MACARON = ,
  62. XORM = file
  63. [log.test]
  64. LEVEL = Info
  65. COLORIZE = true
  66. [log.file]
  67. LEVEL = Debug
  68. [security]
  69. INSTALL_LOCK = true
  70. SECRET_KEY = 9pCviYTWSb
  71. INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE0OTU1NTE2MTh9.hhSVGOANkaKk3vfCd2jDOIww4pUk0xtg9JRde5UogyQ