2014-03-18 14:33:53 +09:00
; App name that shows on every page title
2016-11-07 22:26:13 +09:00
APP_NAME = Gitea: Git with a cup of tea
2014-03-25 19:54:22 +09:00
; Change it if you run locally
2014-03-25 19:52:56 +09:00
RUN_USER = git
2014-03-19 16:24:17 +09:00
; Either "dev", "prod" or "test", default is "dev"
2014-03-18 14:33:53 +09:00
RUN_MODE = dev
2014-02-20 15:53:56 +09:00
[repository]
2014-08-30 22:12:53 +09:00
ROOT =
2014-04-19 19:00:08 +09:00
SCRIPT_TYPE = bash
2015-10-25 17:26:26 +09:00
; Default ANSI charset
2016-06-30 00:11:00 +09:00
ANSI_CHARSET =
2015-10-25 17:26:26 +09:00
; Force every new repository to be private
FORCE_PRIVATE = false
2015-12-12 00:13:19 +09:00
; Global maximum creation limit of repository per user, -1 means no limit
MAX_CREATION_LIMIT = -1
2016-08-31 08:18:33 +09:00
; Mirror sync queue length, increase if mirror syncing starts hanging
MIRROR_QUEUE_LENGTH = 1000
; Patch test queue length, increase if pull request patch testing starts hanging
PULL_REQUEST_QUEUE_LENGTH = 1000
2016-08-28 16:06:22 +09:00
; Preferred Licenses to place at the top of the List
; Name must match file name in conf/license or custom/conf/license
PREFERRED_LICENSES = Apache License 2.0,MIT License
2016-09-18 17:54:33 +09:00
; Disable ability to interact with repositories by HTTP protocol
2016-10-05 01:59:07 +09:00
DISABLE_HTTP_GIT = false
2014-02-13 04:54:09 +09:00
2016-08-12 18:29:29 +09:00
[repository.editor]
2016-08-11 21:48:08 +09:00
; List of file extensions that should have line wraps in the CodeMirror editor
; Separate extensions with a comma. To line wrap files w/o extension, just put a comma
LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd,
; Valid file modes that have a preview API associated with them, such as api/v1/markdown
; Separate values by commas. Preview tab in edit mode won't show if the file extension doesn't match
2016-08-12 18:29:29 +09:00
PREVIEWABLE_FILE_MODES = markdown
2016-08-11 21:48:08 +09:00
2017-06-06 18:09:54 +09:00
[repository.local]
; Path for uploads. Defaults to `tmp/local-repo`
LOCAL_COPY_PATH = tmp/local-repo
2016-08-12 18:29:29 +09:00
[repository.upload]
2016-08-11 21:48:08 +09:00
; Whether repository file uploads are enabled. Defaults to `true`
2016-08-12 18:29:29 +09:00
ENABLED = true
2016-11-07 22:26:13 +09:00
; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gitea restart)
2016-08-11 21:48:08 +09:00
TEMP_PATH = data/tmp/uploads
; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type
ALLOWED_TYPES =
2016-08-30 21:07:50 +09:00
; Max size of each file in MB. Defaults to 3MB
FILE_MAX_SIZE = 3
; Max number of files per upload. Defaults to 5
MAX_FILES = 5
2016-08-11 21:48:08 +09:00
2015-07-25 03:52:25 +09:00
[ui]
2015-09-01 20:04:35 +09:00
; Number of repositories that are showed in one explore page
EXPLORE_PAGING_NUM = 20
2015-07-25 03:52:25 +09:00
; Number of issues that are showed in one page
ISSUE_PAGING_NUM = 10
2015-09-26 09:35:56 +09:00
; Number of maximum commits showed in one activity feed
FEED_MAX_COMMIT_NUM = 5
2016-02-09 04:03:18 +09:00
; Value of `theme-color` meta tag, used by Android >= 5.0
; An invalid color like "none" or "disable" will have the default style
; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
2016-12-20 22:54:22 +09:00
THEME_COLOR_META_TAG = `#6cc644`
2016-07-12 07:21:26 +09:00
; Max size of files to be displayed (defaults is 8MiB)
MAX_DISPLAY_FILE_SIZE = 8388608
2017-01-01 11:51:10 +09:00
; Whether show the user email in the Explore Users page
SHOW_USER_EMAIL = true
2015-07-25 03:52:25 +09:00
2015-09-12 09:42:26 +09:00
[ui.admin]
2015-09-26 01:13:38 +09:00
; Number of users that are showed in one page
2015-09-12 09:42:26 +09:00
USER_PAGING_NUM = 50
2015-09-26 07:38:43 +09:00
; Number of repos that are showed in one page
REPO_PAGING_NUM = 50
2015-09-26 01:13:38 +09:00
; Number of notices that are showed in one page
2015-12-05 15:09:14 +09:00
NOTICE_PAGING_NUM = 25
2015-09-26 02:54:52 +09:00
; Number of organization that are showed in one page
ORG_PAGING_NUM = 50
2015-09-12 09:42:26 +09:00
2016-07-24 01:23:54 +09:00
[ui.user]
; Number of repos that are showed in one page
REPO_PAGING_NUM = 15
2017-04-01 10:03:01 +09:00
[ui.meta]
AUTHOR = Gitea - Git with a cup of tea
DESCRIPTION = Gitea (Git with a cup of tea) is a painless self-hosted Git service written in Go
KEYWORDS = go,git,self-hosted,gitea
2015-09-01 21:32:02 +09:00
[markdown]
; Enable hard line break extension
ENABLE_HARD_LINE_BREAK = false
2016-01-27 10:05:53 +09:00
; List of custom URL-Schemes that are allowed as links when rendering Markdown
; for example git,magnet
CUSTOM_URL_SCHEMES =
2016-08-11 21:48:08 +09:00
; List of file extensions that should be rendered/edited as Markdown
; Separate extensions with a comma. To render files w/o extension as markdown, just put a comma
2016-08-12 18:29:29 +09:00
FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd
2015-09-01 21:32:02 +09:00
2014-02-13 04:54:09 +09:00
[server]
2014-04-05 16:17:57 +09:00
PROTOCOL = http
2014-03-19 20:21:23 +09:00
DOMAIN = localhost
2014-05-02 07:53:41 +09:00
ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
2016-07-02 19:54:48 +09:00
HTTP_ADDR = 0.0.0.0
2014-05-02 07:53:41 +09:00
HTTP_PORT = 3000
2016-08-12 06:46:33 +09:00
; Permission for unix socket
UNIX_SOCKET_PERMISSION = 666
2016-11-07 22:26:13 +09:00
; Local (DMZ) URL for Gitea workers (such as SSH update) accessing web service.
2015-12-10 05:36:43 +09:00
; In most cases you do not need to change the default value.
; Alter it only if your SSH server node is not the same as HTTP node.
2016-07-02 19:54:48 +09:00
LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/
2015-02-08 00:46:57 +09:00
; Disable SSH feature when not available
DISABLE_SSH = false
2015-11-09 06:59:56 +09:00
; Whether use builtin SSH server or not.
START_SSH_SERVER = false
2016-02-25 14:21:48 +09:00
; Domain name to be exposed in clone URL
SSH_DOMAIN = %(DOMAIN)s
2016-12-22 21:26:43 +09:00
; Network interface builtin SSH server listens on
2016-12-28 00:02:24 +09:00
SSH_LISTEN_HOST =
2016-02-25 14:21:48 +09:00
; Port number to be exposed in clone URL
2014-05-12 00:18:10 +09:00
SSH_PORT = 22
2016-02-25 14:21:48 +09:00
; Port number builtin SSH server listens on
SSH_LISTEN_PORT = %(SSH_PORT)s
; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'.
2016-06-30 00:11:00 +09:00
SSH_ROOT_PATH =
2017-06-17 13:54:37 +09:00
; Directory to create temporary files when test public key using ssh-keygen,
2016-02-28 10:48:39 +09:00
; default is system temporary directory.
SSH_KEY_TEST_PATH =
2016-03-01 08:45:12 +09:00
; Path to ssh-keygen, default is 'ssh-keygen' and let shell find out which one to call.
2016-02-28 10:48:39 +09:00
SSH_KEYGEN_PATH = ssh-keygen
2017-06-28 10:35:35 +09:00
; Enable SSH Authorized Key Backup when rewriting all keys, default is true
SSH_BACKUP_AUTHORIZED_KEYS = true
2016-02-28 10:48:39 +09:00
; Indicate whether to check minimum key size with corresponding type
MINIMUM_KEY_SIZE_CHECK = false
2014-04-27 16:05:13 +09:00
; Disable CDN even in "prod" mode
OFFLINE_MODE = false
2014-05-07 02:47:47 +09:00
DISABLE_ROUTER_LOG = false
2014-04-21 09:52:00 +09:00
; Generate steps:
2016-11-07 22:53:29 +09:00
; $ ./gitea cert -ca=true -duration=8760h0m0s -host=myhost.example.com
2014-11-28 06:42:06 +09:00
;
; Or from a .pfx file exported from the Windows certificate store (do
; not forget to export the private key):
; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
2014-04-21 09:52:00 +09:00
CERT_FILE = custom/https/cert.pem
KEY_FILE = custom/https/key.pem
2014-05-26 09:11:25 +09:00
; Upper level of template and static file path
2016-11-07 22:26:13 +09:00
; default is the path where Gitea is executed
2014-08-30 22:12:53 +09:00
STATIC_ROOT_PATH =
2016-03-10 11:16:43 +09:00
; Default path for App data
APP_DATA_PATH = data
2014-07-26 13:24:27 +09:00
; Application level GZIP support
2014-10-14 07:04:07 +09:00
ENABLE_GZIP = false
2014-11-25 08:47:59 +09:00
; Landing page for non-logged users, can be "home" or "explore"
LANDING_PAGE = home
2017-06-23 17:39:17 +09:00
; Enables git-lfs support. true or false, default is false.
LFS_START_SERVER = false
; Where your lfs files put on, default is data/lfs.
LFS_CONTENT_PATH = data/lfs
; LFS authentication secret, changed this to yourself.
LFS_JWT_SECRET =
2014-02-19 07:48:02 +09:00
2016-02-28 10:48:39 +09:00
; Define allowed algorithms and their minimum key length (use -1 to disable a type)
[ssh.minimum_key_sizes]
ED25519 = 256
ECDSA = 256
RSA = 2048
DSA = 1024
2014-02-19 07:48:02 +09:00
[database]
2017-03-10 10:33:19 +09:00
; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice
2014-02-19 07:48:02 +09:00
DB_TYPE = mysql
2014-03-29 14:40:22 +09:00
HOST = 127.0.0.1:3306
2016-11-07 22:26:13 +09:00
NAME = gitea
2014-02-19 07:48:02 +09:00
USER = root
2014-03-10 17:55:53 +09:00
PASSWD =
2014-03-18 14:33:53 +09:00
; For "postgres" only, either "disable", "require" or "verify-full"
2014-03-18 03:03:58 +09:00
SSL_MODE = disable
2016-02-08 01:51:53 +09:00
; For "sqlite3" and "tidb", use absolute path when you start as service
2016-11-07 22:26:13 +09:00
PATH = data/gitea.db
2017-06-15 11:51:17 +09:00
; For "sqlite3" only. Query timeout
SQLITE_TIMEOUT = 500
2014-03-21 14:09:22 +09:00
2017-01-25 11:43:02 +09:00
[indexer]
ISSUE_INDEXER_PATH = indexers/issues.bleve
UPDATE_BUFFER_LEN = 20
2014-03-21 14:09:22 +09:00
[admin]
2017-02-14 21:16:00 +09:00
; Disable regular (non-admin) users to create organizations
DISABLE_REGULAR_ORG_CREATION = false
2014-03-07 01:10:35 +09:00
[security]
2017-01-02 13:32:21 +09:00
; Whether the installer is disabled
2014-03-31 23:12:36 +09:00
INSTALL_LOCK = false
2014-03-18 14:33:53 +09:00
; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
2014-03-19 20:21:23 +09:00
SECRET_KEY = !#@FDEWREWR&*(
2014-03-23 05:40:09 +09:00
; Auto-login remember days
LOGIN_REMEMBER_DAYS = 7
2016-11-07 22:26:13 +09:00
COOKIE_USERNAME = gitea_awesome
COOKIE_REMEMBER_NAME = gitea_incredible
2014-06-25 02:55:47 +09:00
; Reverse proxy authentication header name of user name
REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
2016-12-24 22:40:44 +09:00
; Sets the minimum password length for new Users
MIN_PASSWORD_LENGTH = 6
2017-01-23 10:19:50 +09:00
; True when users are allowed to import local server paths
IMPORT_LOCAL_PATHS = false
2014-03-19 20:21:23 +09:00
2017-03-17 23:16:08 +09:00
[openid]
;
; OpenID is an open standard and decentralized authentication protocol.
; Your identity is the address of a webpage you provide, which describes
; how to prove you are in control of that page.
;
; For more info: https://en.wikipedia.org/wiki/OpenID
;
; Current implementation supports OpenID-2.0
;
; Tested to work providers at the time of writing:
; - Any GNUSocial node (your.hostname.tld/username)
; - Any SimpleID provider (http://simpleid.koinic.net)
; - http://openid.org.cn/
; - openid.stackexchange.com
; - login.launchpad.net
2017-03-18 01:15:01 +09:00
; - <username>.livejournal.com
2017-03-17 23:16:08 +09:00
;
; Whether to allow signin in via OpenID
ENABLE_OPENID_SIGNIN = true
; Whether to allow registering via OpenID
2017-03-29 19:57:43 +09:00
; Do not include to rely on DISABLE_REGISTRATION setting
;ENABLE_OPENID_SIGNUP = true
2017-03-17 23:16:08 +09:00
; Allowed URI patterns (POSIX regexp).
; Space separated.
; Only these would be allowed if non-blank.
; Example value: trusted.domain.org trusted.domain.net
WHITELISTED_URIS =
; Forbidden URI patterns (POSIX regexp).
; Space sepaated.
; Only used if WHITELISTED_URIS is blank.
; Example value: loadaverage.org/badguy stackexchange.com/.*spammer
BLACKLISTED_URIS =
2014-03-19 20:21:23 +09:00
[service]
2017-05-29 16:35:47 +09:00
; Time limit to confirm account/email registration
2014-03-19 20:21:23 +09:00
ACTIVE_CODE_LIVE_MINUTES = 180
2017-05-29 16:35:47 +09:00
; Time limit to confirm forgot password reset process
2014-03-19 20:21:23 +09:00
RESET_PASSWD_CODE_LIVE_MINUTES = 180
; User need to confirm e-mail for registration
2014-03-19 21:27:27 +09:00
REGISTER_EMAIL_CONFIRM = false
2014-03-21 14:09:22 +09:00
; Does not allow register and admin create account only
2014-04-22 07:03:04 +09:00
DISABLE_REGISTRATION = false
2014-03-21 14:59:15 +09:00
; User must sign in to view anything.
REQUIRE_SIGNIN_VIEW = false
2014-03-24 08:09:11 +09:00
; Mail notification
ENABLE_NOTIFY_MAIL = false
2016-11-03 21:29:56 +09:00
; More detail: https://github.com/go-gitea/gitea/issues/165
2014-06-21 13:51:41 +09:00
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
2015-03-13 02:25:28 +09:00
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
2015-09-14 00:07:21 +09:00
; Enable captcha validation for registration
ENABLE_CAPTCHA = true
2017-01-08 12:12:03 +09:00
; Default value for KeepEmailPrivate
; New user will get the value of this setting copied into their profile
DEFAULT_KEEP_EMAIL_PRIVATE = false
2017-05-09 04:51:53 +09:00
; Default value for AllowCreateOrganization
; New user will have rights set to create organizations depending on this setting
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
2017-01-08 12:12:03 +09:00
; Default value for the domain part of the user's email address in the git log
; if he has set KeepEmailPrivate true. The user's email replaced with a
; concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS.
NO_REPLY_ADDRESS = noreply.example.org
2014-03-18 14:33:53 +09:00
2014-06-08 17:45:34 +09:00
[webhook]
2016-08-31 08:18:33 +09:00
; Hook task queue length, increase if webhook shooting starts hanging
2015-07-25 22:32:04 +09:00
QUEUE_LENGTH = 1000
2014-06-08 17:45:34 +09:00
; Deliver timeout in seconds
DELIVER_TIMEOUT = 5
2015-02-11 11:06:59 +09:00
; Allow insecure certification
2015-02-12 02:04:01 +09:00
SKIP_TLS_VERIFY = false
2015-08-28 00:06:14 +09:00
; Number of history information in each page
PAGING_NUM = 10
2014-06-08 17:45:34 +09:00
2014-03-18 14:33:53 +09:00
[mailer]
2014-03-18 17:19:10 +09:00
ENABLED = false
2014-03-20 10:05:48 +09:00
; Buffer length of channel, keep it as it is if you don't know what it is.
2015-09-17 12:08:46 +09:00
SEND_BUFFER_LEN = 100
2014-03-18 14:33:53 +09:00
; Name displayed in mail title
2014-03-19 16:24:17 +09:00
SUBJECT = %(APP_NAME)s
2014-03-18 14:33:53 +09:00
; Mail server
2014-03-19 21:27:27 +09:00
; Gmail: smtp.gmail.com:587
2016-06-30 05:04:15 +09:00
; QQ: smtp.qq.com:465
2014-12-18 20:34:30 +09:00
; 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.
2016-06-30 00:11:00 +09:00
HOST =
2015-07-03 15:08:18 +09:00
; Disable HELO operation when hostname are different.
2016-06-30 00:11:00 +09:00
DISABLE_HELO =
2015-07-03 15:08:18 +09:00
; Custom hostname for HELO operation, default is from system.
2016-06-30 00:11:00 +09:00
HELO_HOSTNAME =
2014-12-18 20:34:30 +09:00
; Do not verify the certificate of the server. Only use this for self-signed certificates
2016-06-30 00:11:00 +09:00
SKIP_VERIFY =
2015-02-13 16:33:55 +09:00
; Use client certificate
2015-02-13 17:06:12 +09:00
USE_CERTIFICATE = false
CERT_FILE = custom/mailer/cert.pem
KEY_FILE = custom/mailer/key.pem
2016-06-30 00:11:00 +09:00
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
2014-08-30 22:12:53 +09:00
FROM =
2014-03-18 14:33:53 +09:00
; Mailer user name and password
2014-08-30 22:12:53 +09:00
USER =
PASSWD =
2017-06-07 10:14:31 +09:00
; Send mails as plain text
SEND_AS_PLAIN_TEXT = false
2016-12-25 22:55:22 +09:00
; Enable sendmail (override SMTP)
USE_SENDMAIL = false
; Specifiy an alternative sendmail binary
SENDMAIL_PATH = sendmail
2014-03-19 16:24:17 +09:00
2014-03-21 22:06:47 +09:00
[cache]
2014-03-21 23:09:57 +09:00
; Either "memory", "redis", or "memcache", default is "memory"
2014-03-21 22:06:47 +09:00
ADAPTER = memory
2014-03-21 23:09:57 +09:00
; For "memory" only, GC interval in seconds, default is 60
INTERVAL = 60
; For "redis" and "memcache", connection host address
2015-01-17 16:17:53 +09:00
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 13:24:27 +09:00
; memcache: `127.0.0.1:11211`
2014-03-21 23:09:57 +09:00
HOST =
2014-03-21 22:06:47 +09:00
2014-03-22 21:49:53 +09:00
[session]
2016-07-02 19:23:15 +09:00
; Either "memory", "file", or "redis", default is "memory"
2014-12-21 12:51:16 +09:00
PROVIDER = memory
2014-03-22 22:21:57 +09:00
; Provider config options
2014-03-22 21:49:53 +09:00
; memory: not have any config yet
2014-07-26 13:24:27 +09:00
; file: session file path, e.g. `data/sessions`
2015-01-17 16:17:53 +09:00
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 13:24:27 +09:00
; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
2014-03-22 21:49:53 +09:00
PROVIDER_CONFIG = data/sessions
2014-03-22 22:21:57 +09:00
; Session cookie name
2016-12-28 00:02:24 +09:00
COOKIE_NAME = i_like_gitea
2014-03-22 22:21:57 +09:00
; If you use session in https only, default is false
2014-03-22 21:49:53 +09:00
COOKIE_SECURE = false
2014-03-22 22:21:57 +09:00
; Enable set cookie, default is true
2014-03-22 21:49:53 +09:00
ENABLE_SET_COOKIE = true
2017-03-18 12:10:30 +09:00
; Session GC time interval in seconds, default is 86400 (1 day)
2014-03-22 21:49:53 +09:00
GC_INTERVAL_TIME = 86400
2017-03-18 12:10:30 +09:00
; Session life time in seconds, default is 86400 (1 day)
2014-03-22 21:49:53 +09:00
SESSION_LIFE_TIME = 86400
2014-03-22 19:42:19 +09:00
[picture]
2014-11-22 00:58:08 +09:00
AVATAR_UPLOAD_PATH = data/avatars
2014-11-17 10:27:04 +09:00
; Chinese users can choose "duoshuo"
2015-08-10 09:44:43 +09:00
; or a custom avatar source, like: http://cn.gravatar.com/avatar/
2014-11-17 10:27:04 +09:00
GRAVATAR_SOURCE = gravatar
2016-08-08 03:01:47 +09:00
; This value will be forced to be true in offline mode.
2014-05-02 10:30:04 +09:00
DISABLE_GRAVATAR = false
2016-08-08 02:27:38 +09:00
; Federated avatar lookup uses DNS to discover avatar associated
2016-08-24 01:50:33 +09:00
; with emails, see https://www.libravatar.org
2016-08-08 03:01:47 +09:00
; This value will be forced to be false in offline mode or Gravatar is disbaled.
2016-08-08 02:27:38 +09:00
ENABLE_FEDERATED_AVATAR = false
2014-03-22 19:42:19 +09:00
2014-07-24 04:15:47 +09:00
[attachment]
2014-07-24 22:51:40 +09:00
; Whether attachments are enabled. Defaults to `true`
2014-07-26 13:24:27 +09:00
ENABLE = true
; Path for attachments. Defaults to `data/attachments`
PATH = data/attachments
2014-07-24 04:15:47 +09:00
; One or more allowed types, e.g. image/jpeg|image/png
2017-01-15 23:57:00 +09:00
ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
2014-07-24 22:23:56 +09:00
; Max size of each file. Defaults to 32MB
2015-09-03 05:18:09 +09:00
MAX_SIZE = 4
2014-07-24 22:23:56 +09:00
; Max number of files per upload. Defaults to 10
2015-08-12 00:24:40 +09:00
MAX_FILES = 5
2014-07-24 04:15:47 +09:00
2014-07-25 05:31:59 +09:00
[time]
; Specifies the format for fully outputed dates. Defaults to RFC1123
; Special supported values are ANSIC, UnixDate, RubyDate, RFC822, RFC822Z, RFC850, RFC1123, RFC1123Z, RFC3339, RFC3339Nano, Kitchen, Stamp, StampMilli, StampMicro and StampNano
; For more information about the format see http://golang.org/pkg/time/#pkg-constants
2014-08-30 22:12:53 +09:00
FORMAT =
2014-07-25 05:31:59 +09:00
2014-03-19 16:24:17 +09:00
[log]
2014-05-28 14:53:06 +09:00
ROOT_PATH =
2014-03-23 06:59:22 +09:00
; Either "console", "file", "conn", "smtp" or "database", default is "console"
2014-05-12 03:37:12 +09:00
; Use comma to separate multiple modes, e.g. "console, file"
2014-03-19 16:24:17 +09:00
MODE = console
; Buffer length of channel, keep it as it is if you don't know what it is.
BUFFER_LEN = 10000
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace"
LEVEL = Trace
2014-03-19 17:08:25 +09:00
; For "console" mode only
2014-03-19 16:24:17 +09:00
[log.console]
2014-08-30 22:12:53 +09:00
LEVEL =
2014-03-19 16:24:17 +09:00
; For "file" mode only
[log.file]
2014-08-30 22:12:53 +09:00
LEVEL =
2014-03-19 16:24:17 +09:00
; This enables automated log rotate(switch of following options), default is true
2014-03-19 17:08:25 +09:00
LOG_ROTATE = true
2014-03-19 16:24:17 +09:00
; Max line number of single file, default is 1000000
MAX_LINES = 1000000
2014-03-19 17:08:25 +09:00
; Max size shift of single file, default is 28 means 1 << 28, 256MB
MAX_SIZE_SHIFT = 28
2014-03-19 16:24:17 +09:00
; Segment log daily, default is true
DAILY_ROTATE = true
; Expired days of log file(delete after max days), default is 7
MAX_DAYS = 7
; For "conn" mode only
[log.conn]
2014-08-30 22:12:53 +09:00
LEVEL =
2014-03-19 16:24:17 +09:00
; Reconnect host for every single message, default is false
RECONNECT_ON_MSG = false
; Try to reconnect when connection is lost, default is false
RECONNECT = false
; Either "tcp", "unix" or "udp", default is "tcp"
PROTOCOL = tcp
; Host address
2014-08-30 22:12:53 +09:00
ADDR =
2014-03-19 16:24:17 +09:00
; For "smtp" mode only
[log.smtp]
2014-08-30 22:12:53 +09:00
LEVEL =
2015-12-09 14:32:53 +09:00
; Name displayed in mail title, default is "Diagnostic message from server"
SUBJECT = Diagnostic message from server
2014-03-19 16:24:17 +09:00
; Mail server
2014-08-30 22:12:53 +09:00
HOST =
2014-03-19 16:24:17 +09:00
; Mailer user name and password
2014-08-30 22:12:53 +09:00
USER =
2014-03-19 16:24:17 +09:00
PASSWD =
2016-12-22 21:27:13 +09:00
; Receivers, can be one or more, e.g. 1@example.com,2@example.com
2014-08-30 22:12:53 +09:00
RECEIVERS =
2014-03-23 06:59:22 +09:00
; For "database" mode only
[log.database]
2014-08-30 22:12:53 +09:00
LEVEL =
2014-06-20 13:25:23 +09:00
; Either "mysql" or "postgres"
2014-08-30 22:12:53 +09:00
DRIVER =
2016-11-07 22:26:13 +09:00
; Based on xorm, e.g.: root:root@localhost/gitea?charset=utf8
2014-08-30 22:12:53 +09:00
CONN =
2014-07-26 13:24:27 +09:00
2015-08-18 03:19:29 +09:00
[cron]
; Enable running cron tasks periodically.
ENABLED = true
2016-11-07 22:26:13 +09:00
; Run cron tasks when Gitea starts.
2015-08-18 03:19:29 +09:00
RUN_AT_START = false
; Update mirrors
[cron.update_mirrors]
2016-07-23 21:20:09 +09:00
SCHEDULE = @every 10m
2015-08-18 03:19:29 +09:00
; Repository health check
[cron.repo_health_check]
SCHEDULE = @every 24h
2015-12-10 01:38:12 +09:00
TIMEOUT = 60s
2015-12-12 11:23:19 +09:00
; Arguments for command 'git fsck', e.g. "--unreachable --tags"
2015-08-18 03:19:29 +09:00
; see more on http://git-scm.com/docs/git-fsck/1.7.5
2016-06-30 00:11:00 +09:00
ARGS =
2015-08-18 03:19:29 +09:00
; Check repository statistics
[cron.check_repo_stats]
RUN_AT_START = true
SCHEDULE = @every 24h
2017-02-11 13:00:46 +09:00
; Clean up old repository archives
[cron.archive_cleanup]
RUN_AT_START = true
SCHEDULE = @every 24h
; Archives created more than OLDER_THAN ago are subject to deletion
OLDER_THAN = 24h
2017-05-10 22:10:18 +09:00
; Synchronize external user data (only LDAP user synchronization is supported)
[cron.sync_external_users]
; Syncronize external user data when starting server (default false)
RUN_AT_START = false
; Interval as a duration between each synchronization (default every 24h)
SCHEDULE = @every 24h
; Create new users, update existing user data and disable users that are not in external source anymore (default)
; or only create new users if UPDATE_EXISTING is set to false
UPDATE_EXISTING = true
2014-09-18 03:22:51 +09:00
[git]
2016-08-08 01:49:47 +09:00
; Disables highlight of added and removed changes
DISABLE_DIFF_HIGHLIGHT = false
; Max number of lines allowed of a single file in diff view
2016-06-30 00:25:41 +09:00
MAX_GIT_DIFF_LINES = 1000
2016-08-08 01:49:47 +09:00
; Max number of characters of a line allowed in diff view
2017-06-01 10:10:11 +09:00
MAX_GIT_DIFF_LINE_CHARACTERS = 5000
2016-08-08 01:49:47 +09:00
; Max number of files shown in diff view
2016-06-30 00:11:00 +09:00
MAX_GIT_DIFF_FILES = 100
2015-12-12 11:23:19 +09:00
; Arguments for command 'git gc', e.g. "--aggressive --auto"
2014-11-30 16:26:29 +09:00
; see more on http://git-scm.com/docs/git-gc/1.7.5
2016-06-30 00:11:00 +09:00
GC_ARGS =
2014-09-18 03:22:51 +09:00
2016-03-01 09:29:49 +09:00
; Operation timeout in seconds
[git.timeout]
MIGRATE = 600
MIRROR = 300
CLONE = 300
PULL = 300
2016-08-10 09:24:32 +09:00
GC = 60
2016-03-01 09:29:49 +09:00
2016-08-10 15:47:16 +09:00
[mirror]
2017-04-09 00:27:26 +09:00
; Default interval as a duration between each check
DEFAULT_INTERVAL = 8h
; Min interval as a duration must be > 1m
MIN_INTERVAL = 10m
2016-08-10 15:47:16 +09:00
2016-07-04 18:27:06 +09:00
[api]
; Max number of items will response in a page
MAX_RESPONSE_ITEMS = 50
2014-07-26 13:24:27 +09:00
[i18n]
2016-12-21 23:47:26 +09:00
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
2017-01-11 17:23:42 +09:00
NAMES = English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português do Brasil,Polski,български,Italiano,Suomalainen,Türkçe,čeština,Српски,Svenska,한국어
2015-03-23 23:19:19 +09:00
2015-08-05 16:24:26 +09:00
; Used for datetimepicker
[i18n.datelang]
en-US = en
zh-CN = zh
zh-HK = zh-TW
2016-05-12 01:00:47 +09:00
zh-TW = zh-TW
2015-08-05 16:24:26 +09:00
de-DE = de
fr-FR = fr
nl-NL = nl
lv-LV = lv
ru-RU = ru
ja-JP = ja
es-ES = es
pt-BR = pt-BR
pl-PL = pl
bg-BG = bg
it-IT = it
2016-03-06 11:13:04 +09:00
fi-FI = fi
2016-05-12 01:00:47 +09:00
tr-TR = tr
cs-CZ = cs-CZ
2016-11-20 11:40:13 +09:00
sr-SP = sr
sv-SE = sv
2016-12-21 23:47:26 +09:00
ko-KR = ko
2015-08-05 16:24:26 +09:00
2015-12-18 12:31:34 +09:00
; Extension mapping to highlight class
; e.g. .toml=ini
[highlight.mapping]
2015-03-23 23:19:19 +09:00
[other]
2015-08-10 09:44:43 +09:00
SHOW_FOOTER_BRANDING = false
2016-11-07 22:26:13 +09:00
; Show version information about Gitea and Go in the footer
2015-11-19 06:32:31 +09:00
SHOW_FOOTER_VERSION = true
2016-09-01 14:01:32 +09:00
; Show time of template execution in the footer
SHOW_FOOTER_TEMPLATE_LOAD_TIME = true