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.

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