app.ini 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. # NEVER EVER MODIFY THIS FILE
  2. # PLEASE MAKE CHANGES ON CORRESPONDING CUSTOM CONFIG FILE
  3. ; App name that shows on every page title
  4. APP_NAME = Gogs: Go Git Service
  5. ; Change it if you run locally
  6. RUN_USER = git
  7. ; Either "dev", "prod" or "test", default is "dev"
  8. RUN_MODE = dev
  9. [repository]
  10. ROOT =
  11. SCRIPT_TYPE = bash
  12. ; Default ANSI charset
  13. ANSI_CHARSET =
  14. ; Force every new repository to be private
  15. FORCE_PRIVATE = false
  16. ; Global maximum creation limit of repository per user, -1 means no limit
  17. MAX_CREATION_LIMIT = -1
  18. ; Patch test queue length, make it as large as possible
  19. PULL_REQUEST_QUEUE_LENGTH = 10000
  20. [ui]
  21. ; Number of repositories that are showed in one explore page
  22. EXPLORE_PAGING_NUM = 20
  23. ; Number of issues that are showed in one page
  24. ISSUE_PAGING_NUM = 10
  25. ; Number of maximum commits showed in one activity feed
  26. FEED_MAX_COMMIT_NUM = 5
  27. ; Value of `theme-color` meta tag, used by Android >= 5.0
  28. ; An invalid color like "none" or "disable" will have the default style
  29. ; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
  30. THEME_COLOR_META_TAG = `#ff5343`
  31. [ui.admin]
  32. ; Number of users that are showed in one page
  33. USER_PAGING_NUM = 50
  34. ; Number of repos that are showed in one page
  35. REPO_PAGING_NUM = 50
  36. ; Number of notices that are showed in one page
  37. NOTICE_PAGING_NUM = 25
  38. ; Number of organization that are showed in one page
  39. ORG_PAGING_NUM = 50
  40. [markdown]
  41. ; Enable hard line break extension
  42. ENABLE_HARD_LINE_BREAK = false
  43. ; List of custom URL-Schemes that are allowed as links when rendering Markdown
  44. ; for example git,magnet
  45. CUSTOM_URL_SCHEMES =
  46. [server]
  47. PROTOCOL = http
  48. DOMAIN = localhost
  49. ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
  50. HTTP_ADDR =
  51. HTTP_PORT = 3000
  52. ; Local (DMZ) URL for Gogs workers (such as SSH update) accessing web service.
  53. ; In most cases you do not need to change the default value.
  54. ; Alter it only if your SSH server node is not the same as HTTP node.
  55. LOCAL_ROOT_URL = http://localhost:%(HTTP_PORT)s/
  56. ; Disable SSH feature when not available
  57. DISABLE_SSH = false
  58. ; Whether use builtin SSH server or not.
  59. START_SSH_SERVER = false
  60. ; Domain name to be exposed in clone URL
  61. SSH_DOMAIN = %(DOMAIN)s
  62. ; Port number to be exposed in clone URL
  63. SSH_PORT = 22
  64. ; Port number builtin SSH server listens on
  65. SSH_LISTEN_PORT = %(SSH_PORT)s
  66. ; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'.
  67. SSH_ROOT_PATH =
  68. ; Disable CDN even in "prod" mode
  69. OFFLINE_MODE = false
  70. DISABLE_ROUTER_LOG = false
  71. ; Generate steps:
  72. ; $ ./gogs cert -ca=true -duration=8760h0m0s -host=myhost.example.com
  73. ;
  74. ; Or from a .pfx file exported from the Windows certificate store (do
  75. ; not forget to export the private key):
  76. ; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
  77. ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
  78. CERT_FILE = custom/https/cert.pem
  79. KEY_FILE = custom/https/key.pem
  80. ; Upper level of template and static file path
  81. ; default is the path where Gogs is executed
  82. STATIC_ROOT_PATH =
  83. ; Application level GZIP support
  84. ENABLE_GZIP = false
  85. ; Landing page for non-logged users, can be "home" or "explore"
  86. LANDING_PAGE = home
  87. [database]
  88. ; Either "mysql", "postgres" or "sqlite3", it's your choice
  89. DB_TYPE = mysql
  90. HOST = 127.0.0.1:3306
  91. NAME = gogs
  92. USER = root
  93. PASSWD =
  94. ; For "postgres" only, either "disable", "require" or "verify-full"
  95. SSL_MODE = disable
  96. ; For "sqlite3" and "tidb", use absolute path when you start as service
  97. PATH = data/gogs.db
  98. [admin]
  99. [security]
  100. INSTALL_LOCK = false
  101. ; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
  102. SECRET_KEY = !#@FDEWREWR&*(
  103. ; Auto-login remember days
  104. LOGIN_REMEMBER_DAYS = 7
  105. COOKIE_USERNAME = gogs_awesome
  106. COOKIE_REMEMBER_NAME = gogs_incredible
  107. ; Reverse proxy authentication header name of user name
  108. REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
  109. [service]
  110. ACTIVE_CODE_LIVE_MINUTES = 180
  111. RESET_PASSWD_CODE_LIVE_MINUTES = 180
  112. ; User need to confirm e-mail for registration
  113. REGISTER_EMAIL_CONFIRM = false
  114. ; Does not allow register and admin create account only
  115. DISABLE_REGISTRATION = false
  116. ; User must sign in to view anything.
  117. REQUIRE_SIGNIN_VIEW = false
  118. ; Mail notification
  119. ENABLE_NOTIFY_MAIL = false
  120. ; More detail: https://github.com/gogits/gogs/issues/165
  121. ENABLE_REVERSE_PROXY_AUTHENTICATION = false
  122. ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
  123. ; Enable captcha validation for registration
  124. ENABLE_CAPTCHA = true
  125. [webhook]
  126. ; Hook task queue length
  127. QUEUE_LENGTH = 1000
  128. ; Deliver timeout in seconds
  129. DELIVER_TIMEOUT = 5
  130. ; Allow insecure certification
  131. SKIP_TLS_VERIFY = false
  132. ; Number of history information in each page
  133. PAGING_NUM = 10
  134. [mailer]
  135. ENABLED = false
  136. ; Buffer length of channel, keep it as it is if you don't know what it is.
  137. SEND_BUFFER_LEN = 100
  138. ; Name displayed in mail title
  139. SUBJECT = %(APP_NAME)s
  140. ; Mail server
  141. ; Gmail: smtp.gmail.com:587
  142. ; QQ: smtp.qq.com:25
  143. ; Note, if the port ends with "465", SMTPS will be used. Using STARTTLS on port 587 is recommended per RFC 6409. If the server supports STARTTLS it will always be used.
  144. HOST =
  145. ; Disable HELO operation when hostname are different.
  146. DISABLE_HELO =
  147. ; Custom hostname for HELO operation, default is from system.
  148. HELO_HOSTNAME =
  149. ; Do not verify the certificate of the server. Only use this for self-signed certificates
  150. SKIP_VERIFY =
  151. ; Use client certificate
  152. USE_CERTIFICATE = false
  153. CERT_FILE = custom/mailer/cert.pem
  154. KEY_FILE = custom/mailer/key.pem
  155. ; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
  156. FROM =
  157. ; Mailer user name and password
  158. USER =
  159. PASSWD =
  160. [cache]
  161. ; Either "memory", "redis", or "memcache", default is "memory"
  162. ADAPTER = memory
  163. ; For "memory" only, GC interval in seconds, default is 60
  164. INTERVAL = 60
  165. ; For "redis" and "memcache", connection host address
  166. ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
  167. ; memcache: `127.0.0.1:11211`
  168. HOST =
  169. [session]
  170. ; Either "memory", "file", "redis" or "mysql", default is "memory"
  171. PROVIDER = memory
  172. ; Provider config options
  173. ; memory: not have any config yet
  174. ; file: session file path, e.g. `data/sessions`
  175. ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
  176. ; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
  177. PROVIDER_CONFIG = data/sessions
  178. ; Session cookie name
  179. COOKIE_NAME = i_like_gogits
  180. ; If you use session in https only, default is false
  181. COOKIE_SECURE = false
  182. ; Enable set cookie, default is true
  183. ENABLE_SET_COOKIE = true
  184. ; Session GC time interval, default is 86400
  185. GC_INTERVAL_TIME = 86400
  186. ; Session life time, default is 86400
  187. SESSION_LIFE_TIME = 86400
  188. [picture]
  189. ; The place to picture data, either "server" or "qiniu", default is "server"
  190. SERVICE = server
  191. AVATAR_UPLOAD_PATH = data/avatars
  192. ; Chinese users can choose "duoshuo"
  193. ; or a custom avatar source, like: http://cn.gravatar.com/avatar/
  194. GRAVATAR_SOURCE = gravatar
  195. DISABLE_GRAVATAR = false
  196. [attachment]
  197. ; Whether attachments are enabled. Defaults to `true`
  198. ENABLE = true
  199. ; Path for attachments. Defaults to `data/attachments`
  200. PATH = data/attachments
  201. ; One or more allowed types, e.g. image/jpeg|image/png
  202. ALLOWED_TYPES = image/jpeg|image/png
  203. ; Max size of each file. Defaults to 32MB
  204. MAX_SIZE = 4
  205. ; Max number of files per upload. Defaults to 10
  206. MAX_FILES = 5
  207. [time]
  208. ; Specifies the format for fully outputed dates. Defaults to RFC1123
  209. ; Special supported values are ANSIC, UnixDate, RubyDate, RFC822, RFC822Z, RFC850, RFC1123, RFC1123Z, RFC3339, RFC3339Nano, Kitchen, Stamp, StampMilli, StampMicro and StampNano
  210. ; For more information about the format see http://golang.org/pkg/time/#pkg-constants
  211. FORMAT =
  212. [log]
  213. ROOT_PATH =
  214. ; Either "console", "file", "conn", "smtp" or "database", default is "console"
  215. ; Use comma to separate multiple modes, e.g. "console, file"
  216. MODE = console
  217. ; Buffer length of channel, keep it as it is if you don't know what it is.
  218. BUFFER_LEN = 10000
  219. ; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace"
  220. LEVEL = Trace
  221. ; For "console" mode only
  222. [log.console]
  223. LEVEL =
  224. ; For "file" mode only
  225. [log.file]
  226. LEVEL =
  227. ; This enables automated log rotate(switch of following options), default is true
  228. LOG_ROTATE = true
  229. ; Max line number of single file, default is 1000000
  230. MAX_LINES = 1000000
  231. ; Max size shift of single file, default is 28 means 1 << 28, 256MB
  232. MAX_SIZE_SHIFT = 28
  233. ; Segment log daily, default is true
  234. DAILY_ROTATE = true
  235. ; Expired days of log file(delete after max days), default is 7
  236. MAX_DAYS = 7
  237. ; For "conn" mode only
  238. [log.conn]
  239. LEVEL =
  240. ; Reconnect host for every single message, default is false
  241. RECONNECT_ON_MSG = false
  242. ; Try to reconnect when connection is lost, default is false
  243. RECONNECT = false
  244. ; Either "tcp", "unix" or "udp", default is "tcp"
  245. PROTOCOL = tcp
  246. ; Host address
  247. ADDR =
  248. ; For "smtp" mode only
  249. [log.smtp]
  250. LEVEL =
  251. ; Name displayed in mail title, default is "Diagnostic message from server"
  252. SUBJECT = Diagnostic message from server
  253. ; Mail server
  254. HOST =
  255. ; Mailer user name and password
  256. USER =
  257. PASSWD =
  258. ; Receivers, can be one or more, e.g. ["1@example.com","2@example.com"]
  259. RECEIVERS =
  260. ; For "database" mode only
  261. [log.database]
  262. LEVEL =
  263. ; Either "mysql" or "postgres"
  264. DRIVER =
  265. ; Based on xorm, e.g.: root:root@localhost/gogs?charset=utf8
  266. CONN =
  267. [cron]
  268. ; Enable running cron tasks periodically.
  269. ENABLED = true
  270. ; Run cron tasks when Gogs starts.
  271. RUN_AT_START = false
  272. ; Update mirrors
  273. [cron.update_mirrors]
  274. SCHEDULE = @every 1h
  275. ; Repository health check
  276. [cron.repo_health_check]
  277. SCHEDULE = @every 24h
  278. TIMEOUT = 60s
  279. ; Arguments for command 'git fsck', e.g. "--unreachable --tags"
  280. ; see more on http://git-scm.com/docs/git-fsck/1.7.5
  281. ARGS =
  282. ; Check repository statistics
  283. [cron.check_repo_stats]
  284. RUN_AT_START = true
  285. SCHEDULE = @every 24h
  286. [git]
  287. MAX_GIT_DIFF_LINES = 10000
  288. ; Arguments for command 'git gc', e.g. "--aggressive --auto"
  289. ; see more on http://git-scm.com/docs/git-gc/1.7.5
  290. GC_ARGS =
  291. [i18n]
  292. LANGS = en-US,zh-CN,zh-HK,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT
  293. NAMES = English,简体中文,繁體中文,Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português do Brasil,Polski,български,Italiano
  294. ; Used for datetimepicker
  295. [i18n.datelang]
  296. en-US = en
  297. zh-CN = zh
  298. zh-HK = zh-TW
  299. de-DE = de
  300. fr-FR = fr
  301. nl-NL = nl
  302. lv-LV = lv
  303. ru-RU = ru
  304. ja-JP = ja
  305. es-ES = es
  306. pt-BR = pt-BR
  307. pl-PL = pl
  308. bg-BG = bg
  309. it-IT = it
  310. ; Extension mapping to highlight class
  311. ; e.g. .toml=ini
  312. [highlight.mapping]
  313. [other]
  314. SHOW_FOOTER_BRANDING = false
  315. ; Show version information about gogs and go in the footer
  316. SHOW_FOOTER_VERSION = true