app.ini 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. # !!! NEVER EVER MODIFY THIS FILE !!!
  2. # !!! PLEASE MAKE CHANGES ON CORRESPONDING CUSTOM CONFIG FILE !!!
  3. # !!! IF YOU ARE PACKAGING PROVIDER, PLEASE MAKE OWN COPY OF IT !!!
  4. ; The brand name of the application.
  5. BRAND_NAME = Gogs
  6. ; The system user who should be running the applications. It has no effect on Windows,
  7. ; otherwise, it should match the value of $USER environment variable.
  8. RUN_USER = git
  9. ; The running mode of the application, can be either "dev", "prod" or "test".
  10. RUN_MODE = dev
  11. [server]
  12. ; The public-facing URL for the application.
  13. EXTERNAL_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
  14. ; The public-facing domain name for the application.
  15. DOMAIN = localhost
  16. ; The protocol that is used to serve direct traffic to the application.
  17. ; Currently supports "http", "https", "fcgi" and "unix".
  18. PROTOCOL = http
  19. ; The address to be listened by the application.
  20. HTTP_ADDR = 0.0.0.0
  21. ; The port number to be listened by the application.
  22. HTTP_PORT = 3000
  23. ; Generate steps:
  24. ; $ ./gogs cert -ca=true -duration=8760h0m0s -host=myhost.example.com
  25. ;
  26. ; Or from a .pfx file exported from the Windows certificate store (do
  27. ; not forget to export the private key):
  28. ; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
  29. ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
  30. CERT_FILE = custom/https/cert.pem
  31. KEY_FILE = custom/https/key.pem
  32. ; The minimum allowed TLS version, currently supports "TLS10", "TLS11", "TLS12", and "TLS13".
  33. TLS_MIN_VERSION = TLS12
  34. ; File permission when serve traffic via Unix domain socket.
  35. UNIX_SOCKET_PERMISSION = 666
  36. ; Local (DMZ) URL for workers (e.g. SSH update) accessing web service.
  37. ; In most cases you do not need to change the default value.
  38. ; Alter it only if your SSH server node is not the same as HTTP node.
  39. LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/
  40. ; Whether to disable using CDN for static files regardless.
  41. OFFLINE_MODE = false
  42. ; Whether to disable logging in router.
  43. DISABLE_ROUTER_LOG = true
  44. ; Whether to enable application level GZIP compression.
  45. ENABLE_GZIP = false
  46. ; The path for storing application specific data.
  47. APP_DATA_PATH = data
  48. ; Whether to enable to load assets (i.e. "conf", "templates", "public") from disk instead of embedded bindata.
  49. LOAD_ASSETS_FROM_DISK = false
  50. ; The landing page URL for anonymous users, can be a link to a external site.
  51. LANDING_URL = /
  52. ; Whether to disable SSH access to the application entirely.
  53. DISABLE_SSH = false
  54. ; The domain name to be exposed in SSH clone URL.
  55. SSH_DOMAIN = %(DOMAIN)s
  56. ; The port number to be exposed in SSH clone URL.
  57. SSH_PORT = 22
  58. ; The path of SSH root directory, default is "$HOME/.ssh".
  59. SSH_ROOT_PATH =
  60. ; The path to ssh-keygen, default is "ssh-keygen" and let shell find out which one to call.
  61. SSH_KEYGEN_PATH = ssh-keygen
  62. ; The directory to create temporary files when test a public key using ssh-keygen,
  63. ; default is the system temporary directory.
  64. SSH_KEY_TEST_PATH =
  65. ; Whether to check minimum public key size with corresponding type.
  66. MINIMUM_KEY_SIZE_CHECK = false
  67. ; Whether to rewrite "~/.ssh/authorized_keys" file at start, ignored when use builtin SSH server.
  68. REWRITE_AUTHORIZED_KEYS_AT_START = false
  69. ; Whether to start a builtin SSH server.
  70. START_SSH_SERVER = false
  71. ; The network interface for builtin SSH server to listen on.
  72. SSH_LISTEN_HOST = 0.0.0.0
  73. ; The port number for builtin SSH server to listen on.
  74. SSH_LISTEN_PORT = %(SSH_PORT)s
  75. ; The list of accepted ciphers for connections to builtin SSH server.
  76. SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, [email protected], arcfour256, arcfour128
  77. ; Define allowed algorithms and their minimum key length (use -1 to disable a type).
  78. [ssh.minimum_key_sizes]
  79. ED25519 = 256
  80. ECDSA = 256
  81. RSA = 2048
  82. DSA = 1024
  83. [repository]
  84. ; The root path for storing managed repositories, default is "~/gogs-repositories"
  85. ROOT =
  86. ; The script type server supports, sometimes could be "sh".
  87. SCRIPT_TYPE = bash
  88. ; Default ANSI charset for an unrecognized charset.
  89. ANSI_CHARSET =
  90. ; Whether to force every new repository to be private.
  91. FORCE_PRIVATE = false
  92. ; The global limit of number of repositories a user can create, -1 means no limit.
  93. MAX_CREATION_LIMIT = -1
  94. ; Preferred Licenses to place at the top of the list.
  95. ; Name must match file name in "conf/license" or "custom/conf/license".
  96. PREFERRED_LICENSES = Apache License 2.0, MIT License
  97. ; Whether to disable Git interaction with repositories via HTTP/HTTPS protocol.
  98. DISABLE_HTTP_GIT = false
  99. ; Whether to enable ability to migrate repository by server local path.
  100. ENABLE_LOCAL_PATH_MIGRATION = false
  101. ; Whether to enable render mode for raw file. There are potential security risks.
  102. ENABLE_RAW_FILE_RENDER_MODE = false
  103. ; The maximum number of goroutines that can be run at the same time for a single
  104. ; fetch request. Usually, the value depend of how many CPU (cores) you have. If
  105. ; the value is non-positive, it matchs the number of CPUs available to the application.
  106. COMMITS_FETCH_CONCURRENCY = 0
  107. [repository.editor]
  108. ; List of file extensions that should have line wraps in the CodeMirror editor.
  109. ; Separate extensions with a comma.
  110. LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd
  111. ; Valid file modes that have a preview API associated with them, such as "/api/v1/markdown".
  112. ; Separate values by commas. Preview tab in edit mode won't show if the file extension doesn't match.
  113. PREVIEWABLE_FILE_MODES = markdown
  114. [repository.upload]
  115. ; Whether to enable repository file uploads.
  116. ENABLED = true
  117. ; The path to temporarily store uploads (content under this path gets wiped out on every start).
  118. TEMP_PATH = data/tmp/uploads
  119. ; File types that are allowed to be uploaded, e.g. "image/jpeg|image/png". Leave empty to allow any file type.
  120. ALLOWED_TYPES =
  121. ; The maximum size of each file in MB.
  122. FILE_MAX_SIZE = 3
  123. ; The maximum number of files per upload.
  124. MAX_FILES = 5
  125. [database]
  126. ; The database backend, either "postgres", "mysql" "sqlite3" or "mssql".
  127. ; You can connect to TiDB with MySQL protocol.
  128. TYPE = postgres
  129. HOST = 127.0.0.1:5432
  130. NAME = gogs
  131. USER = gogs
  132. PASSWORD =
  133. ; For "postgres" only, either "disable", "require" or "verify-full".
  134. SSL_MODE = disable
  135. ; For "sqlite3" only, make sure to use absolute path.
  136. PATH = data/gogs.db
  137. [security]
  138. ; Whether to show the install page, set this to "true" to bypass it.
  139. INSTALL_LOCK = false
  140. ; The secret to encrypt cookie values, 2FA code, etc.
  141. ; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
  142. SECRET_KEY = !#@FDEWREWR&*(
  143. ; The days remembered for auto-login.
  144. LOGIN_REMEMBER_DAYS = 7
  145. ; The cookie name to stoed auto-login information.
  146. COOKIE_REMEMBER_NAME = gogs_incredible
  147. ; The cookie name to stored logged in username.
  148. COOKIE_USERNAME = gogs_awesome
  149. ; Whether to set secure cookie.
  150. COOKIE_SECURE = false
  151. ; Whether to set cookie to indicate user login status.
  152. ENABLE_LOGIN_STATUS_COOKIE = false
  153. ; The cookie name to store user login status.
  154. LOGIN_STATUS_COOKIE_NAME = login_status
  155. [email]
  156. ; Whether to enable the email service.
  157. ENABLED = false
  158. ; The prefix prepended to the subject line.
  159. SUBJECT_PREFIX = `[%(BRAND_NAME)s] `
  160. ; The SMTP server with its port, e.g. smtp.mailgun.org:587, smtp.gmail.com:587, smtp.qq.com:465
  161. ; If the port ends is "465", SMTPS will be used. Using STARTTLS on port 587 is recommended per RFC 6409.
  162. ; If the server supports STARTTLS it will always be used.
  163. HOST = smtp.mailgun.org:587
  164. ; The email from address (RFC 5322). This can be just an email address, or the `"Name" <[email protected]>` format.
  165. FROM = [email protected]
  166. ; The login user.
  167. USER = [email protected]
  168. ; The login password.
  169. PASSWORD =
  170. ; Whether to disable HELO operation when the hostname is different.
  171. DISABLE_HELO =
  172. ; The custom hostname for HELO operation, default is from system.
  173. HELO_HOSTNAME =
  174. ; Whether to skip verifying the certificate of the server. Only use this for self-signed certificates.
  175. SKIP_VERIFY = false
  176. ; Whether to use client certificates.
  177. USE_CERTIFICATE = false
  178. CERT_FILE = custom/email/cert.pem
  179. KEY_FILE = custom/email/key.pem
  180. ; Whether to use "text/plain" as content format.
  181. USE_PLAIN_TEXT = false
  182. ; Whether to attach a plaintext alternative to the MIME message while sending HTML emails.
  183. ; It is used to support older mail clients and make spam filters happier.
  184. ADD_PLAIN_TEXT_ALT = false
  185. [auth]
  186. ; The valid duration of activate code in minutes.
  187. ACTIVATE_CODE_LIVES = 180
  188. ; The valid duration of reset password code in minutes.
  189. RESET_PASSWORD_CODE_LIVES = 180
  190. ; Whether to require email confirmation for adding new email addresses.
  191. ; Enable this option will also require user to confirm the email for registration.
  192. REQUIRE_EMAIL_CONFIRMATION = false
  193. ; Whether to disallow anonymous users visiting the site.
  194. REQUIRE_SIGNIN_VIEW = false
  195. ; Whether to disable self-registration. When disabled, accounts would have to be created by admins.
  196. DISABLE_REGISTRATION = false
  197. ; Whether to enable captcha validation for registration
  198. ENABLE_REGISTRATION_CAPTCHA = true
  199. ; Whether to enable reverse proxy authentication via HTTP header.
  200. ENABLE_REVERSE_PROXY_AUTHENTICATION = false
  201. ; Whether to automatically create new users for reverse proxy authentication.
  202. ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
  203. ; The HTTP header used as username for reverse proxy authentication.
  204. REVERSE_PROXY_AUTHENTICATION_HEADER = X-WEBAUTH-USER
  205. [user]
  206. ; Whether to enable email notifications for users.
  207. ENABLE_EMAIL_NOTIFICATION = false
  208. [session]
  209. ; The session provider, either "memory", "file", or "redis".
  210. PROVIDER = memory
  211. ; The configuration for respective provider:
  212. ; - memory: does not need any config yet
  213. ; - file: session file path, e.g. `data/sessions`
  214. ; - redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
  215. PROVIDER_CONFIG = data/sessions
  216. ; The cookie name to store the session identifier.
  217. COOKIE_NAME = i_like_gogs
  218. ; Whether to set cookie in HTTPS only.
  219. COOKIE_SECURE = false
  220. ; The GC interval in seconds for session data.
  221. GC_INTERVAL = 3600
  222. ; The maximum life time in seconds for a session.
  223. MAX_LIFE_TIME = 86400
  224. ; The cookie name for CSRF token.
  225. CSRF_COOKIE_NAME = _csrf
  226. ; Attachment settings for releases
  227. [release.attachment]
  228. ; Whether attachments are enabled. Defaults to `true`
  229. ENABLED = true
  230. ; Path for attachments. Defaults to `data/attachments`
  231. PATH = data/attachments
  232. ; One or more allowed types, e.g. image/jpeg|image/png
  233. ALLOWED_TYPES = */*
  234. ; Max size of each file. Defaults to 32MB
  235. MAX_SIZE = 32
  236. ; Max number of files per upload. Defaults to 10
  237. MAX_FILES = 10
  238. [markdown]
  239. ; Enable hard line break extension
  240. ENABLE_HARD_LINE_BREAK = false
  241. ; List of custom URL-Schemes that are allowed as links when rendering Markdown
  242. ; for example git,magnet
  243. CUSTOM_URL_SCHEMES =
  244. ; List of file extensions that should be rendered/edited as Markdown
  245. ; Separate extensions with a comma. To render files w/o extension as markdown, just put a comma
  246. FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd
  247. [smartypants]
  248. ENABLED = false
  249. FRACTIONS = true
  250. DASHES = true
  251. LATEX_DASHES = true
  252. ANGLED_QUOTES = true
  253. [http]
  254. ; Value for Access-Control-Allow-Origin header, default is not to present
  255. ACCESS_CONTROL_ALLOW_ORIGIN =
  256. [admin]
  257. ; Disable regular (non-admin) users to create organizations
  258. DISABLE_REGULAR_ORG_CREATION = false
  259. [webhook]
  260. ; Types are enabled for users to use, can be "gogs", "slack", "discord", "dingtalk"
  261. TYPES = gogs, slack, discord, dingtalk
  262. ; Hook task queue length, increase if webhook shooting starts hanging
  263. QUEUE_LENGTH = 1000
  264. ; Deliver timeout in seconds
  265. DELIVER_TIMEOUT = 15
  266. ; Allow insecure certification
  267. SKIP_TLS_VERIFY = false
  268. ; Number of history information in each page
  269. PAGING_NUM = 10
  270. [cache]
  271. ; Either "memory", "redis", or "memcache", default is "memory"
  272. ADAPTER = memory
  273. ; For "memory" only, GC interval in seconds, default is 60
  274. INTERVAL = 60
  275. ; For "redis" and "memcache", connection host address
  276. ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
  277. ; memcache: `127.0.0.1:11211`
  278. HOST =
  279. [picture]
  280. ; Path to store user uploaded avatars
  281. AVATAR_UPLOAD_PATH = data/avatars
  282. ; Path to store repository uploaded avatars
  283. REPOSITORY_AVATAR_UPLOAD_PATH = data/repo-avatars
  284. ; Chinese users can choose "duoshuo"
  285. ; or a custom avatar source, like: http://cn.gravatar.com/avatar/
  286. GRAVATAR_SOURCE = gravatar
  287. ; This value will be forced to be true in offline mode.
  288. DISABLE_GRAVATAR = false
  289. ; Federated avatar lookup uses DNS to discover avatar associated
  290. ; with emails, see https://www.libravatar.org
  291. ; This value will be forced to be false in offline mode or Gravatar is disbaled.
  292. ENABLE_FEDERATED_AVATAR = false
  293. ; Attachment settings for issues
  294. [attachment]
  295. ; Whether attachments are enabled. Defaults to `true`
  296. ENABLED = true
  297. ; Path for attachments. Defaults to `data/attachments`
  298. PATH = data/attachments
  299. ; One or more allowed types, e.g. image/jpeg|image/png
  300. ALLOWED_TYPES = image/jpeg|image/png
  301. ; Max size of each file. Defaults to 4MB
  302. MAX_SIZE = 4
  303. ; Max number of files per upload. Defaults to 5
  304. MAX_FILES = 5
  305. [time]
  306. ; Specifies the format for fully outputed dates. Defaults to RFC1123
  307. ; Special supported values are ANSIC, UnixDate, RubyDate, RFC822, RFC822Z, RFC850, RFC1123, RFC1123Z, RFC3339, RFC3339Nano, Kitchen, Stamp, StampMilli, StampMicro and StampNano
  308. ; For more information about the format see http://golang.org/pkg/time/#pkg-constants
  309. FORMAT =
  310. ; General settings of loggers
  311. [log]
  312. ROOT_PATH =
  313. ; Can be "console" and "file", default is "console"
  314. ; Use comma to separate multiple modes, e.g. "console, file"
  315. MODE = console
  316. ; Buffer length of channel, keep it as it is if you don't know what it is.
  317. BUFFER_LEN = 100
  318. ; Either "Trace", "Info", "Warn", "Error", "Fatal", default is "Trace"
  319. LEVEL = Trace
  320. ; For "console" mode only
  321. [log.console]
  322. ; Comment out to inherit
  323. ; LEVEL =
  324. ; For "file" mode only
  325. [log.file]
  326. ; Comment out to inherit
  327. ; LEVEL =
  328. ; This enables automated log rotate (switch of following options)
  329. LOG_ROTATE = true
  330. ; Segment log daily
  331. DAILY_ROTATE = true
  332. ; Max size shift of single file, default is 28 means 1 << 28, 256MB
  333. MAX_SIZE_SHIFT = 28
  334. ; Max line number of single file
  335. MAX_LINES = 1000000
  336. ; Expired days of log file (delete after max days)
  337. MAX_DAYS = 7
  338. ; For "slack" mode only
  339. [log.slack]
  340. ; Comment out to inherit
  341. ; LEVEL =
  342. ; Webhook URL
  343. URL =
  344. [log.discord]
  345. ; Comment out to inherit
  346. ; LEVEL =
  347. ; Webhook URL
  348. URL =
  349. ; Username displayed in webhook
  350. USERNAME = %(BRAND_NAME)s
  351. [log.xorm]
  352. ; Enable file rotation
  353. ROTATE = true
  354. ; Rotate every day
  355. ROTATE_DAILY = true
  356. ; Rotate once file size excesses x MB
  357. MAX_SIZE = 100
  358. ; Maximum days to keep logger files
  359. MAX_DAYS = 3
  360. [cron]
  361. ; Enable running cron tasks periodically.
  362. ENABLED = true
  363. ; Run cron tasks when Gogs starts.
  364. RUN_AT_START = false
  365. ; Update mirrors
  366. [cron.update_mirrors]
  367. SCHEDULE = @every 10m
  368. ; Repository health check
  369. [cron.repo_health_check]
  370. SCHEDULE = @every 24h
  371. TIMEOUT = 60s
  372. ; Arguments for command 'git fsck', e.g. "--unreachable --tags"
  373. ; see more on http://git-scm.com/docs/git-fsck/1.7.5
  374. ARGS =
  375. ; Check repository statistics
  376. [cron.check_repo_stats]
  377. RUN_AT_START = true
  378. SCHEDULE = @every 24h
  379. ; Cleanup repository archives
  380. [cron.repo_archive_cleanup]
  381. RUN_AT_START = false
  382. SCHEDULE = @every 24h
  383. ; Time duration to check if archive should be cleaned
  384. OLDER_THAN = 24h
  385. [git]
  386. ; Disables highlight of added and removed changes
  387. DISABLE_DIFF_HIGHLIGHT = false
  388. ; Max number of lines allowed of a single file in diff view
  389. MAX_GIT_DIFF_LINES = 1000
  390. ; Max number of characters of a line allowed in diff view
  391. MAX_GIT_DIFF_LINE_CHARACTERS = 500
  392. ; Max number of files shown in diff view
  393. MAX_GIT_DIFF_FILES = 100
  394. ; Arguments for command 'git gc', e.g. "--aggressive --auto"
  395. ; see more on http://git-scm.com/docs/git-gc/1.7.5
  396. GC_ARGS =
  397. ; Operation timeout in seconds
  398. [git.timeout]
  399. MIGRATE = 600
  400. MIRROR = 300
  401. CLONE = 300
  402. PULL = 300
  403. GC = 60
  404. [mirror]
  405. ; Default interval in hours between each check
  406. DEFAULT_INTERVAL = 8
  407. [api]
  408. ; Max number of items will response in a page
  409. MAX_RESPONSE_ITEMS = 50
  410. [ui]
  411. ; Number of repositories that are showed in one explore page
  412. EXPLORE_PAGING_NUM = 20
  413. ; Number of issues that are showed in one page
  414. ISSUE_PAGING_NUM = 10
  415. ; Number of maximum commits showed in one activity feed
  416. FEED_MAX_COMMIT_NUM = 5
  417. ; Value of "theme-color" meta tag, used by Android >= 5.0
  418. ; An invalid color like "none" or "disable" will have the default style
  419. ; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
  420. THEME_COLOR_META_TAG = `#ff5343`
  421. ; Max size in bytes of files to be displayed (default is 8MB)
  422. MAX_DISPLAY_FILE_SIZE = 8388608
  423. [ui.admin]
  424. ; Number of users that are showed in one page
  425. USER_PAGING_NUM = 50
  426. ; Number of repos that are showed in one page
  427. REPO_PAGING_NUM = 50
  428. ; Number of notices that are showed in one page
  429. NOTICE_PAGING_NUM = 25
  430. ; Number of organization that are showed in one page
  431. ORG_PAGING_NUM = 50
  432. [ui.user]
  433. ; Number of repos that are showed in one page
  434. REPO_PAGING_NUM = 15
  435. ; Number of news feeds that are showed in one page
  436. NEWS_FEED_PAGING_NUM = 20
  437. ; Number of commits that are showed in one page
  438. COMMITS_PAGING_NUM = 30
  439. [prometheus]
  440. ENABLED = true
  441. ENABLE_BASIC_AUTH = false
  442. BASIC_AUTH_USERNAME =
  443. BASIC_AUTH_PASSWORD =
  444. [i18n]
  445. 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,gl-ES,uk-UA,en-GB,hu-HU,sk-SK,id-ID,fa-IR,vi-VN,pt-PT
  446. NAMES = English,简体中文,繁體中文(香港),繁體中文(臺灣),Deutsch,français,Nederlands,latviešu,русский,日本語,español,português do Brasil,polski,български,italiano,suomi,Türkçe,čeština,српски,svenska,한국어,galego,українська,English (United Kingdom),Magyar,Slovenčina,Indonesian,Persian,Vietnamese,Português
  447. ; Used for datetimepicker
  448. [i18n.datelang]
  449. en-US = en
  450. zh-CN = zh
  451. zh-HK = zh-TW
  452. zh-TW = zh-TW
  453. de-DE = de
  454. fr-FR = fr
  455. nl-NL = nl
  456. lv-LV = lv
  457. ru-RU = ru
  458. ja-JP = ja
  459. es-ES = es
  460. pt-BR = pt-BR
  461. pl-PL = pl
  462. bg-BG = bg
  463. it-IT = it
  464. fi-FI = fi
  465. tr-TR = tr
  466. cs-CZ = cs-CZ
  467. sr-SP = sr
  468. sv-SE = sv
  469. ko-KR = ko
  470. gl-ES = gl
  471. uk-UA = uk
  472. en-GB = en-GB
  473. hu-HU = hu
  474. sk-SK = sk
  475. id-ID = id
  476. fa-IR = fa
  477. vi-VN = vi
  478. pt-PT = pt
  479. ; Extension mapping to highlight class
  480. ; e.g. .toml=ini
  481. [highlight.mapping]
  482. [other]
  483. SHOW_FOOTER_BRANDING = false
  484. ; Show time of template execution in the footer
  485. SHOW_FOOTER_TEMPLATE_LOAD_TIME = true