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 21KB

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