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.

app.ini.sample 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. ; This file lists the default values used by Gitea
  2. ; Copy required sections to your own app.ini (default is custom/conf/app.ini)
  3. ; and modify as needed.
  4. ; App name that shows on every page title
  5. APP_NAME = Gitea: Git with a cup of tea
  6. ; Change it if you run locally
  7. RUN_USER = git
  8. ; Either "dev", "prod" or "test", default is "dev"
  9. RUN_MODE = dev
  10. [repository]
  11. ROOT =
  12. SCRIPT_TYPE = bash
  13. ; Default ANSI charset
  14. ANSI_CHARSET =
  15. ; Force every new repository to be private
  16. FORCE_PRIVATE = false
  17. ; Default private when create a new repository, could be: last, private, public. Default is last which means last user repo visiblity.
  18. DEFAULT_PRIVATE = last
  19. ; Global maximum creation limit of repository per user, -1 means no limit
  20. MAX_CREATION_LIMIT = -1
  21. ; Mirror sync queue length, increase if mirror syncing starts hanging
  22. MIRROR_QUEUE_LENGTH = 1000
  23. ; Patch test queue length, increase if pull request patch testing starts hanging
  24. PULL_REQUEST_QUEUE_LENGTH = 1000
  25. ; Preferred Licenses to place at the top of the List
  26. ; Name must match file name in conf/license or custom/conf/license
  27. PREFERRED_LICENSES = Apache License 2.0,MIT License
  28. ; Disable ability to interact with repositories by HTTP protocol
  29. DISABLE_HTTP_GIT = false
  30. ; Force ssh:// clone url instead of scp-style uri when default SSH port is used
  31. USE_COMPAT_SSH_URI = false
  32. [repository.editor]
  33. ; List of file extensions that should have line wraps in the CodeMirror editor
  34. ; Separate extensions with a comma. To line wrap files w/o extension, just put a comma
  35. LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd,
  36. ; Valid file modes that have a preview API associated with them, such as api/v1/markdown
  37. ; Separate values by commas. Preview tab in edit mode won't show if the file extension doesn't match
  38. PREVIEWABLE_FILE_MODES = markdown
  39. [repository.local]
  40. ; Path for uploads. Defaults to `tmp/local-repo`
  41. LOCAL_COPY_PATH = tmp/local-repo
  42. [repository.upload]
  43. ; Whether repository file uploads are enabled. Defaults to `true`
  44. ENABLED = true
  45. ; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gitea restart)
  46. TEMP_PATH = data/tmp/uploads
  47. ; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type
  48. ALLOWED_TYPES =
  49. ; Max size of each file in MB. Defaults to 3MB
  50. FILE_MAX_SIZE = 3
  51. ; Max number of files per upload. Defaults to 5
  52. MAX_FILES = 5
  53. [ui]
  54. ; Number of repositories that are showed in one explore page
  55. EXPLORE_PAGING_NUM = 20
  56. ; Number of issues that are showed in one page
  57. ISSUE_PAGING_NUM = 10
  58. ; Number of maximum commits showed in one activity feed
  59. FEED_MAX_COMMIT_NUM = 5
  60. ; Value of `theme-color` meta tag, used by Android >= 5.0
  61. ; An invalid color like "none" or "disable" will have the default style
  62. ; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
  63. THEME_COLOR_META_TAG = `#6cc644`
  64. ; Max size of files to be displayed (defaults is 8MiB)
  65. MAX_DISPLAY_FILE_SIZE = 8388608
  66. ; Whether show the user email in the Explore Users page
  67. SHOW_USER_EMAIL = true
  68. [ui.admin]
  69. ; Number of users that are showed in one page
  70. USER_PAGING_NUM = 50
  71. ; Number of repos that are showed in one page
  72. REPO_PAGING_NUM = 50
  73. ; Number of notices that are showed in one page
  74. NOTICE_PAGING_NUM = 25
  75. ; Number of organization that are showed in one page
  76. ORG_PAGING_NUM = 50
  77. [ui.user]
  78. ; Number of repos that are showed in one page
  79. REPO_PAGING_NUM = 15
  80. [ui.meta]
  81. AUTHOR = Gitea - Git with a cup of tea
  82. DESCRIPTION = Gitea (Git with a cup of tea) is a painless self-hosted Git service written in Go
  83. KEYWORDS = go,git,self-hosted,gitea
  84. [markdown]
  85. ; Enable hard line break extension
  86. ENABLE_HARD_LINE_BREAK = false
  87. ; List of custom URL-Schemes that are allowed as links when rendering Markdown
  88. ; for example git,magnet
  89. CUSTOM_URL_SCHEMES =
  90. ; List of file extensions that should be rendered/edited as Markdown
  91. ; Separate extensions with a comma. To render files w/o extension as markdown, just put a comma
  92. FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd
  93. [server]
  94. ; Listen protocol. One of 'http', 'https', 'unix' or 'fcgi'.
  95. PROTOCOL = http
  96. DOMAIN = localhost
  97. ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
  98. ; Listen address. Either a IPv4/IPv6 address or the path to a unix socket.
  99. HTTP_ADDR = 0.0.0.0
  100. HTTP_PORT = 3000
  101. ; If REDIRECT_OTHER_PORT is true, and PROTOCOL is set to https an http server
  102. ; will be started on PORT_TO_REDIRECT and redirect request to the main
  103. ; ROOT_URL. Defaults are false for REDIRECT_OTHER_PORT and 80 for
  104. ; PORT_TO_REDIRECT.
  105. REDIRECT_OTHER_PORT = false
  106. PORT_TO_REDIRECT = 80
  107. ; Permission for unix socket
  108. UNIX_SOCKET_PERMISSION = 666
  109. ; Local (DMZ) URL for Gitea workers (such as SSH update) accessing web service.
  110. ; In most cases you do not need to change the default value.
  111. ; Alter it only if your SSH server node is not the same as HTTP node.
  112. LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/
  113. ; Disable SSH feature when not available
  114. DISABLE_SSH = false
  115. ; Whether use builtin SSH server or not.
  116. START_SSH_SERVER = false
  117. ; Username to use for builtin SSH server. If blank, then it is the value of RUN_USER.
  118. BUILTIN_SSH_SERVER_USER =
  119. ; Domain name to be exposed in clone URL
  120. SSH_DOMAIN = %(DOMAIN)s
  121. ; Network interface builtin SSH server listens on
  122. SSH_LISTEN_HOST =
  123. ; Port number to be exposed in clone URL
  124. SSH_PORT = 22
  125. ; Port number builtin SSH server listens on
  126. SSH_LISTEN_PORT = %(SSH_PORT)s
  127. ; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'.
  128. SSH_ROOT_PATH =
  129. ; For built-in SSH server only, choose the ciphers to support for SSH connections,
  130. ; for system SSH this setting has no effect
  131. SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, arcfour256, arcfour128
  132. ; For built-in SSH server only, choose the key exchange algorithms to support for SSH connections,
  133. ; for system SSH this setting has no effect
  134. SSH_SERVER_KEY_EXCHANGES = diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, curve25519-sha256@libssh.org
  135. ; For built-in SSH server only, choose the MACs to support for SSH connections,
  136. ; for system SSH this setting has no effect
  137. SSH_SERVER_MACS = hmac-sha2-256-etm@openssh.com, hmac-sha2-256, hmac-sha1, hmac-sha1-96
  138. ; Directory to create temporary files when test public key using ssh-keygen,
  139. ; default is system temporary directory.
  140. SSH_KEY_TEST_PATH =
  141. ; Path to ssh-keygen, default is 'ssh-keygen' and let shell find out which one to call.
  142. SSH_KEYGEN_PATH = ssh-keygen
  143. ; Enable SSH Authorized Key Backup when rewriting all keys, default is true
  144. SSH_BACKUP_AUTHORIZED_KEYS = true
  145. ; Enable exposure of SSH clone URL to anonymous visitors, default is false
  146. SSH_EXPOSE_ANONYMOUS = false
  147. ; Indicate whether to check minimum key size with corresponding type
  148. MINIMUM_KEY_SIZE_CHECK = false
  149. ; Disable CDN even in "prod" mode
  150. OFFLINE_MODE = false
  151. DISABLE_ROUTER_LOG = false
  152. ; Generate steps:
  153. ; $ ./gitea cert -ca=true -duration=8760h0m0s -host=myhost.example.com
  154. ;
  155. ; Or from a .pfx file exported from the Windows certificate store (do
  156. ; not forget to export the private key):
  157. ; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
  158. ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
  159. CERT_FILE = custom/https/cert.pem
  160. KEY_FILE = custom/https/key.pem
  161. ; Upper level of template and static file path
  162. ; default is the path where Gitea is executed
  163. STATIC_ROOT_PATH =
  164. ; Default path for App data
  165. APP_DATA_PATH = data
  166. ; Application level GZIP support
  167. ENABLE_GZIP = false
  168. ; Landing page, can be "home", "explore", or "organizations"
  169. LANDING_PAGE = home
  170. ; Enables git-lfs support. true or false, default is false.
  171. LFS_START_SERVER = false
  172. ; Where your lfs files put on, default is data/lfs.
  173. LFS_CONTENT_PATH = data/lfs
  174. ; LFS authentication secret, changed this to yourself.
  175. LFS_JWT_SECRET =
  176. ; Define allowed algorithms and their minimum key length (use -1 to disable a type)
  177. [ssh.minimum_key_sizes]
  178. ED25519 = 256
  179. ECDSA = 256
  180. RSA = 2048
  181. DSA = 1024
  182. [database]
  183. ; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice
  184. DB_TYPE = mysql
  185. HOST = 127.0.0.1:3306
  186. NAME = gitea
  187. USER = root
  188. PASSWD =
  189. ; For "postgres" only, either "disable", "require" or "verify-full"
  190. SSL_MODE = disable
  191. ; For "sqlite3" and "tidb", use absolute path when you start as service
  192. PATH = data/gitea.db
  193. ; For "sqlite3" only. Query timeout
  194. SQLITE_TIMEOUT = 500
  195. ; For iterate buffer, default is 50
  196. ITERATE_BUFFER_SIZE = 50
  197. [indexer]
  198. ISSUE_INDEXER_PATH = indexers/issues.bleve
  199. ; repo indexer by default disabled, since it uses a lot of disk space
  200. REPO_INDEXER_ENABLED = false
  201. REPO_INDEXER_PATH = indexers/repos.bleve
  202. UPDATE_BUFFER_LEN = 20
  203. MAX_FILE_SIZE = 1048576
  204. [admin]
  205. ; Disable regular (non-admin) users to create organizations
  206. DISABLE_REGULAR_ORG_CREATION = false
  207. [security]
  208. ; Whether the installer is disabled
  209. INSTALL_LOCK = false
  210. ; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
  211. SECRET_KEY = !#@FDEWREWR&*(
  212. ; Auto-login remember days
  213. LOGIN_REMEMBER_DAYS = 7
  214. COOKIE_USERNAME = gitea_awesome
  215. COOKIE_REMEMBER_NAME = gitea_incredible
  216. ; Reverse proxy authentication header name of user name
  217. REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
  218. ; Sets the minimum password length for new Users
  219. MIN_PASSWORD_LENGTH = 6
  220. ; True when users are allowed to import local server paths
  221. IMPORT_LOCAL_PATHS = false
  222. ; Prevent all users (including admin) from creating custom git hooks
  223. DISABLE_GIT_HOOKS = false
  224. [openid]
  225. ;
  226. ; OpenID is an open standard and decentralized authentication protocol.
  227. ; Your identity is the address of a webpage you provide, which describes
  228. ; how to prove you are in control of that page.
  229. ;
  230. ; For more info: https://en.wikipedia.org/wiki/OpenID
  231. ;
  232. ; Current implementation supports OpenID-2.0
  233. ;
  234. ; Tested to work providers at the time of writing:
  235. ; - Any GNUSocial node (your.hostname.tld/username)
  236. ; - Any SimpleID provider (http://simpleid.koinic.net)
  237. ; - http://openid.org.cn/
  238. ; - openid.stackexchange.com
  239. ; - login.launchpad.net
  240. ; - <username>.livejournal.com
  241. ;
  242. ; Whether to allow signin in via OpenID
  243. ENABLE_OPENID_SIGNIN = true
  244. ; Whether to allow registering via OpenID
  245. ; Do not include to rely on DISABLE_REGISTRATION setting
  246. ;ENABLE_OPENID_SIGNUP = true
  247. ; Allowed URI patterns (POSIX regexp).
  248. ; Space separated.
  249. ; Only these would be allowed if non-blank.
  250. ; Example value: trusted.domain.org trusted.domain.net
  251. WHITELISTED_URIS =
  252. ; Forbidden URI patterns (POSIX regexp).
  253. ; Space separated.
  254. ; Only used if WHITELISTED_URIS is blank.
  255. ; Example value: loadaverage.org/badguy stackexchange.com/.*spammer
  256. BLACKLISTED_URIS =
  257. [service]
  258. ; Time limit to confirm account/email registration
  259. ACTIVE_CODE_LIVE_MINUTES = 180
  260. ; Time limit to confirm forgot password reset process
  261. RESET_PASSWD_CODE_LIVE_MINUTES = 180
  262. ; User need to confirm e-mail for registration
  263. REGISTER_EMAIL_CONFIRM = false
  264. ; Does not allow register and admin create account only
  265. DISABLE_REGISTRATION = false
  266. ; User must sign in to view anything.
  267. REQUIRE_SIGNIN_VIEW = false
  268. ; Mail notification
  269. ENABLE_NOTIFY_MAIL = false
  270. ; More detail: https://github.com/go-gitea/gitea/issues/165
  271. ENABLE_REVERSE_PROXY_AUTHENTICATION = false
  272. ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
  273. ; Enable captcha validation for registration
  274. ENABLE_CAPTCHA = true
  275. ; Default value for KeepEmailPrivate
  276. ; New user will get the value of this setting copied into their profile
  277. DEFAULT_KEEP_EMAIL_PRIVATE = false
  278. ; Default value for AllowCreateOrganization
  279. ; New user will have rights set to create organizations depending on this setting
  280. DEFAULT_ALLOW_CREATE_ORGANIZATION = true
  281. ; Default value for EnableTimetracking
  282. ; Repositories will use timetracking by default depending on this setting
  283. DEFAULT_ENABLE_TIMETRACKING = true
  284. ; Default value for AllowOnlyContributorsToTrackTime
  285. ; Only users with write permissions could track time if this is true
  286. DEFAULT_ALLOW_ONLY_CONTRIBUTORS_TO_TRACK_TIME = true
  287. ; Default value for the domain part of the user's email address in the git log
  288. ; if he has set KeepEmailPrivate true. The user's email replaced with a
  289. ; concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS.
  290. NO_REPLY_ADDRESS = noreply.example.org
  291. [webhook]
  292. ; Hook task queue length, increase if webhook shooting starts hanging
  293. QUEUE_LENGTH = 1000
  294. ; Deliver timeout in seconds
  295. DELIVER_TIMEOUT = 5
  296. ; Allow insecure certification
  297. SKIP_TLS_VERIFY = false
  298. ; Number of history information in each page
  299. PAGING_NUM = 10
  300. [mailer]
  301. ENABLED = false
  302. ; Buffer length of channel, keep it as it is if you don't know what it is.
  303. SEND_BUFFER_LEN = 100
  304. ; Name displayed in mail title
  305. SUBJECT = %(APP_NAME)s
  306. ; Mail server
  307. ; Gmail: smtp.gmail.com:587
  308. ; QQ: smtp.qq.com:465
  309. ; 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.
  310. HOST =
  311. ; Disable HELO operation when hostname are different.
  312. DISABLE_HELO =
  313. ; Custom hostname for HELO operation, default is from system.
  314. HELO_HOSTNAME =
  315. ; Do not verify the certificate of the server. Only use this for self-signed certificates
  316. SKIP_VERIFY =
  317. ; Use client certificate
  318. USE_CERTIFICATE = false
  319. CERT_FILE = custom/mailer/cert.pem
  320. KEY_FILE = custom/mailer/key.pem
  321. ; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
  322. FROM =
  323. ; Mailer user name and password
  324. USER =
  325. PASSWD =
  326. ; Send mails as plain text
  327. SEND_AS_PLAIN_TEXT = false
  328. ; Enable sendmail (override SMTP)
  329. USE_SENDMAIL = false
  330. ; Specify an alternative sendmail binary
  331. SENDMAIL_PATH = sendmail
  332. ; Specify any extra sendmail arguments
  333. SENDMAIL_ARGS =
  334. [cache]
  335. ; Either "memory", "redis", or "memcache", default is "memory"
  336. ADAPTER = memory
  337. ; For "memory" only, GC interval in seconds, default is 60
  338. INTERVAL = 60
  339. ; For "redis" and "memcache", connection host address
  340. ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
  341. ; memcache: `127.0.0.1:11211`
  342. HOST =
  343. ; Time to keep items in cache if not used, default is 16 hours.
  344. ; Setting it to 0 disables caching
  345. ITEM_TTL = 16h
  346. [session]
  347. ; Either "memory", "file", or "redis", default is "memory"
  348. PROVIDER = memory
  349. ; Provider config options
  350. ; memory: not have any config yet
  351. ; file: session file path, e.g. `data/sessions`
  352. ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
  353. ; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
  354. PROVIDER_CONFIG = data/sessions
  355. ; Session cookie name
  356. COOKIE_NAME = i_like_gitea
  357. ; If you use session in https only, default is false
  358. COOKIE_SECURE = false
  359. ; Enable set cookie, default is true
  360. ENABLE_SET_COOKIE = true
  361. ; Session GC time interval in seconds, default is 86400 (1 day)
  362. GC_INTERVAL_TIME = 86400
  363. ; Session life time in seconds, default is 86400 (1 day)
  364. SESSION_LIFE_TIME = 86400
  365. [picture]
  366. AVATAR_UPLOAD_PATH = data/avatars
  367. ; Chinese users can choose "duoshuo"
  368. ; or a custom avatar source, like: http://cn.gravatar.com/avatar/
  369. GRAVATAR_SOURCE = gravatar
  370. ; This value will be forced to be true in offline mode.
  371. DISABLE_GRAVATAR = false
  372. ; Federated avatar lookup uses DNS to discover avatar associated
  373. ; with emails, see https://www.libravatar.org
  374. ; This value will be forced to be false in offline mode or Gravatar is disabled.
  375. ENABLE_FEDERATED_AVATAR = false
  376. [attachment]
  377. ; Whether attachments are enabled. Defaults to `true`
  378. ENABLE = true
  379. ; Path for attachments. Defaults to `data/attachments`
  380. PATH = data/attachments
  381. ; One or more allowed types, e.g. image/jpeg|image/png
  382. ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
  383. ; Max size of each file. Defaults to 32MB
  384. MAX_SIZE = 4
  385. ; Max number of files per upload. Defaults to 10
  386. MAX_FILES = 5
  387. [time]
  388. ; Specifies the format for fully outputted dates. Defaults to RFC1123
  389. ; Special supported values are ANSIC, UnixDate, RubyDate, RFC822, RFC822Z, RFC850, RFC1123, RFC1123Z, RFC3339, RFC3339Nano, Kitchen, Stamp, StampMilli, StampMicro and StampNano
  390. ; For more information about the format see http://golang.org/pkg/time/#pkg-constants
  391. FORMAT =
  392. [log]
  393. ROOT_PATH =
  394. ; Either "console", "file", "conn", "smtp" or "database", default is "console"
  395. ; Use comma to separate multiple modes, e.g. "console, file"
  396. MODE = console
  397. ; Buffer length of channel, keep it as it is if you don't know what it is.
  398. BUFFER_LEN = 10000
  399. ; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace"
  400. LEVEL = Trace
  401. ; For "console" mode only
  402. [log.console]
  403. LEVEL =
  404. ; For "file" mode only
  405. [log.file]
  406. LEVEL =
  407. ; This enables automated log rotate(switch of following options), default is true
  408. LOG_ROTATE = true
  409. ; Max line number of single file, default is 1000000
  410. MAX_LINES = 1000000
  411. ; Max size shift of single file, default is 28 means 1 << 28, 256MB
  412. MAX_SIZE_SHIFT = 28
  413. ; Segment log daily, default is true
  414. DAILY_ROTATE = true
  415. ; Expired days of log file(delete after max days), default is 7
  416. MAX_DAYS = 7
  417. ; For "conn" mode only
  418. [log.conn]
  419. LEVEL =
  420. ; Reconnect host for every single message, default is false
  421. RECONNECT_ON_MSG = false
  422. ; Try to reconnect when connection is lost, default is false
  423. RECONNECT = false
  424. ; Either "tcp", "unix" or "udp", default is "tcp"
  425. PROTOCOL = tcp
  426. ; Host address
  427. ADDR =
  428. ; For "smtp" mode only
  429. [log.smtp]
  430. LEVEL =
  431. ; Name displayed in mail title, default is "Diagnostic message from server"
  432. SUBJECT = Diagnostic message from server
  433. ; Mail server
  434. HOST =
  435. ; Mailer user name and password
  436. USER =
  437. PASSWD =
  438. ; Receivers, can be one or more, e.g. 1@example.com,2@example.com
  439. RECEIVERS =
  440. ; For "database" mode only
  441. [log.database]
  442. LEVEL =
  443. ; Either "mysql" or "postgres"
  444. DRIVER =
  445. ; Based on xorm, e.g.: root:root@localhost/gitea?charset=utf8
  446. CONN =
  447. [cron]
  448. ; Enable running cron tasks periodically.
  449. ENABLED = true
  450. ; Run cron tasks when Gitea starts.
  451. RUN_AT_START = false
  452. ; Update mirrors
  453. [cron.update_mirrors]
  454. SCHEDULE = @every 10m
  455. ; Repository health check
  456. [cron.repo_health_check]
  457. SCHEDULE = @every 24h
  458. TIMEOUT = 60s
  459. ; Arguments for command 'git fsck', e.g. "--unreachable --tags"
  460. ; see more on http://git-scm.com/docs/git-fsck/1.7.5
  461. ARGS =
  462. ; Check repository statistics
  463. [cron.check_repo_stats]
  464. RUN_AT_START = true
  465. SCHEDULE = @every 24h
  466. ; Clean up old repository archives
  467. [cron.archive_cleanup]
  468. ; Whether to enable the job
  469. ENABLED = true
  470. ; Whether to always run at least once at start up time (if ENABLED)
  471. RUN_AT_START = true
  472. ; Time interval for job to run
  473. SCHEDULE = @every 24h
  474. ; Archives created more than OLDER_THAN ago are subject to deletion
  475. OLDER_THAN = 24h
  476. ; Synchronize external user data (only LDAP user synchronization is supported)
  477. [cron.sync_external_users]
  478. ; Synchronize external user data when starting server (default false)
  479. RUN_AT_START = false
  480. ; Interval as a duration between each synchronization (default every 24h)
  481. SCHEDULE = @every 24h
  482. ; Create new users, update existing user data and disable users that are not in external source anymore (default)
  483. ; or only create new users if UPDATE_EXISTING is set to false
  484. UPDATE_EXISTING = true
  485. [git]
  486. ; Disables highlight of added and removed changes
  487. DISABLE_DIFF_HIGHLIGHT = false
  488. ; Max number of lines allowed of a single file in diff view
  489. MAX_GIT_DIFF_LINES = 1000
  490. ; Max number of characters of a line allowed in diff view
  491. MAX_GIT_DIFF_LINE_CHARACTERS = 5000
  492. ; Max number of files shown in diff view
  493. MAX_GIT_DIFF_FILES = 100
  494. ; Arguments for command 'git gc', e.g. "--aggressive --auto"
  495. ; see more on http://git-scm.com/docs/git-gc/1.7.5
  496. GC_ARGS =
  497. ; Operation timeout in seconds
  498. [git.timeout]
  499. MIGRATE = 600
  500. MIRROR = 300
  501. CLONE = 300
  502. PULL = 300
  503. GC = 60
  504. [mirror]
  505. ; Default interval as a duration between each check
  506. DEFAULT_INTERVAL = 8h
  507. ; Min interval as a duration must be > 1m
  508. MIN_INTERVAL = 10m
  509. [api]
  510. ; Max number of items will response in a page
  511. MAX_RESPONSE_ITEMS = 50
  512. [i18n]
  513. LANGS = en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR
  514. NAMES = English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,français,Nederlands,latviešu,русский,日本語,español,português do Brasil,polski,български,italiano,suomi,Türkçe,čeština,српски,svenska,한국어
  515. ; Used for datetimepicker
  516. [i18n.datelang]
  517. en-US = en
  518. zh-CN = zh
  519. zh-HK = zh-TW
  520. zh-TW = zh-TW
  521. de-DE = de
  522. fr-FR = fr
  523. nl-NL = nl
  524. lv-LV = lv
  525. ru-RU = ru
  526. ja-JP = ja
  527. es-ES = es
  528. pt-BR = pt-BR
  529. pl-PL = pl
  530. bg-BG = bg
  531. it-IT = it
  532. fi-FI = fi
  533. tr-TR = tr
  534. cs-CZ = cs-CZ
  535. sr-SP = sr
  536. sv-SE = sv
  537. ko-KR = ko
  538. ; Extension mapping to highlight class
  539. ; e.g. .toml=ini
  540. [highlight.mapping]
  541. [other]
  542. SHOW_FOOTER_BRANDING = false
  543. ; Show version information about Gitea and Go in the footer
  544. SHOW_FOOTER_VERSION = true
  545. ; Show time of template execution in the footer
  546. SHOW_FOOTER_TEMPLATE_LOAD_TIME = true
  547. [markup.asciidoc]
  548. ENABLED = false
  549. ; List of file extensions that should be rendered by an external command
  550. FILE_EXTENSIONS = .adoc,.asciidoc
  551. ; External command to render all matching extensions
  552. RENDER_COMMAND = "asciidoc --out-file=- -"
  553. ; Input is not a standard input but a file
  554. IS_INPUT_FILE = false