app.ini 886 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ; App name that shows on every page title
  2. APP_NAME = Gogs: Go Git Service
  3. ; !!MUST CHANGE TO YOUR USER NAME!!
  4. RUN_USER = lunny
  5. ; Either "dev", "prod" or "test", based on martini
  6. RUN_MODE = dev
  7. [repository]
  8. ROOT = /Users/%(RUN_USER)s/git/gogs-repositories
  9. LANG_IGNS = Google Go|C|Python|Ruby|C Sharp
  10. LICENSES = Apache v2 License|GPL v2|MIT License|Affero GPL|BSD (3-Clause) License
  11. [server]
  12. DOMAIN = gogits.org
  13. HTTP_ADDR =
  14. HTTP_PORT = 3000
  15. [database]
  16. ; Either "mysql" or "postgres", it's your choice
  17. DB_TYPE = mysql
  18. HOST =
  19. NAME = gogs
  20. USER = root
  21. PASSWD =
  22. ; For "postgres" only, either "disable", "require" or "verify-full"
  23. SSL_MODE = disable
  24. [security]
  25. ; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
  26. USER_PASSWD_SALT = !#@FDEWREWR&*(
  27. [mailer]
  28. ENABLED = true
  29. ; Name displayed in mail title
  30. NAME = %(APP_NAME)s
  31. ; Mail server
  32. HOST =
  33. ; Mailer user name and password
  34. USER =
  35. PASSWD =