2019-04-02 13:18:31 +05:30
2017-11-26 14:46:58 +05:30
; This file lists the default values used by Gitea
; Copy required sections to your own app.ini (default is custom/conf/app.ini)
; and modify as needed.
2018-05-11 07:13:46 +05:30
; see https://docs.gitea.io/en-us/config-cheat-sheet/ for additional documentation.
; App name that shows in every page title
2016-11-07 18:56:13 +05:30
APP_NAME = Gitea: Git with a cup of tea
2014-03-25 16:24:22 +05:30
; Change it if you run locally
2014-03-25 16:22:56 +05:30
RUN_USER = git
2014-03-19 12:54:17 +05:30
; Either "dev", "prod" or "test", default is "dev"
2014-03-18 11:03:53 +05:30
RUN_MODE = dev
2014-02-20 12:23:56 +05:30
[repository]
2014-08-30 18:42:53 +05:30
ROOT =
2014-04-19 15:30:08 +05:30
SCRIPT_TYPE = bash
2015-10-25 13:56:26 +05:30
; Default ANSI charset
2016-06-29 20:41:00 +05:30
ANSI_CHARSET =
2015-10-25 13:56:26 +05:30
; Force every new repository to be private
FORCE_PRIVATE = false
2018-05-11 07:13:46 +05:30
; Default privacy setting when creating a new repository, allowed values: last, private, public. Default is last which means the last setting used.
2017-12-20 18:29:56 +05:30
DEFAULT_PRIVATE = last
2018-05-11 07:13:46 +05:30
; Global limit of repositories per user, applied at creation time. -1 means no limit
2015-12-11 20:43:19 +05:30
MAX_CREATION_LIMIT = -1
2016-08-31 04:48:33 +05:30
; 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 12:36:22 +05:30
; Preferred Licenses to place at the top of the List
2018-05-11 07:13:46 +05:30
; The name here must match the filename in conf/license or custom/conf/license
2016-08-28 12:36:22 +05:30
PREFERRED_LICENSES = Apache License 2.0,MIT License
2018-05-11 07:13:46 +05:30
; Disable the ability to interact with repositories using the HTTP protocol
2016-10-04 22:29:07 +05:30
DISABLE_HTTP_GIT = false
2019-01-15 02:35:27 +05:30
; Value for Access-Control-Allow-Origin header, default is not to present
; WARNING: This maybe harmful to you website if you do not give it a right value.
2019-04-02 13:18:31 +05:30
ACCESS_CONTROL_ALLOW_ORIGIN =
2017-08-26 19:27:41 +05:30
; Force ssh:// clone url instead of scp-style uri when default SSH port is used
USE_COMPAT_SSH_URI = false
2019-02-11 00:57:19 +05:30
; Close issues as long as a commit on any branch marks it as fixed
DEFAULT_CLOSE_ISSUES_VIA_COMMITS_IN_ANY_BRANCH = false
2019-12-15 08:19:52 +05:30
; Allow users to push local repositories to Gitea and have them automatically created for a user or an org
ENABLE_PUSH_CREATE_USER = false
ENABLE_PUSH_CREATE_ORG = false
2020-01-17 13:04:37 +05:30
; Comma separated list of globally disabled repo units. Allowed values: repo.issues, repo.ext_issues, repo.pulls, repo.wiki, repo.ext_wiki
DISABLED_REPO_UNITS =
; Comma separated list of default repo units. Allowed values: repo.code, repo.releases, repo.issues, repo.pulls, repo.wiki.
; Note: Code and Releases can currently not be deactivated. If you specify default repo units you should still list them for future compatibility.
; External wiki and issue tracker can't be enabled by default as it requires additional settings.
; Disabled repo units will not be added to new repositories regardless if it is in the default list.
DEFAULT_REPO_UNITS = repo.code,repo.releases,repo.issues,repo.pulls,repo.wiki
2020-01-23 05:16:46 +05:30
; Prefix archive files by placing them in a directory named after the repository
PREFIX_ARCHIVE_FILES = true
2014-02-13 01:24:09 +05:30
2016-08-12 14:59:29 +05:30
[repository.editor]
2018-05-11 07:13:46 +05:30
; List of file extensions for which lines should be wrapped in the CodeMirror editor
; Separate extensions with a comma. To line wrap files without an extension, just put a comma
2016-08-11 18:18:08 +05:30
LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd,
; Valid file modes that have a preview API associated with them, such as api/v1/markdown
2018-05-11 07:13:46 +05:30
; Separate the values by commas. The preview tab in edit mode won't be displayed if the file extension doesn't match
2016-08-12 14:59:29 +05:30
PREVIEWABLE_FILE_MODES = markdown
2016-08-11 18:18:08 +05:30
2017-06-06 14:39:54 +05:30
[repository.local]
2018-01-28 22:46:28 +05:30
; Path for local repository copy. Defaults to `tmp/local-repo`
2017-06-06 14:39:54 +05:30
LOCAL_COPY_PATH = tmp/local-repo
2018-01-28 22:46:28 +05:30
; Path for local wiki copy. Defaults to `tmp/local-wiki`
LOCAL_WIKI_PATH = tmp/local-wiki
2017-06-06 14:39:54 +05:30
2016-08-12 14:59:29 +05:30
[repository.upload]
2016-08-11 18:18:08 +05:30
; Whether repository file uploads are enabled. Defaults to `true`
2016-08-12 14:59:29 +05:30
ENABLED = true
2016-11-07 18:56:13 +05:30
; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gitea restart)
2016-08-11 18:18:08 +05:30
TEMP_PATH = data/tmp/uploads
; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type
ALLOWED_TYPES =
2018-05-11 07:13:46 +05:30
; Max size of each file in megabytes. Defaults to 3MB
2016-08-30 17:37:50 +05:30
FILE_MAX_SIZE = 3
; Max number of files per upload. Defaults to 5
MAX_FILES = 5
2016-08-11 18:18:08 +05:30
2018-08-14 00:34:39 +05:30
[repository.pull-request]
; List of prefixes used in Pull Request title to mark them as Work In Progress
WORK_IN_PROGRESS_PREFIXES=WIP:,[WIP]
2019-10-30 18:13:59 +05:30
; List of keywords used in Pull Request comments to automatically close a related issue
CLOSE_KEYWORDS=close,closes,closed,fix,fixes,fixed,resolve,resolves,resolved
; List of keywords used in Pull Request comments to automatically reopen a related issue
REOPEN_KEYWORDS=reopen,reopens,reopened
2019-12-31 05:04:11 +05:30
; In the default merge message for squash commits include at most this many commits
DEFAULT_MERGE_MESSAGE_COMMITS_LIMIT=50
; In the default merge message for squash commits limit the size of the commit messages to this
DEFAULT_MERGE_MESSAGE_SIZE=5120
; In the default merge message for squash commits walk all commits to include all authors in the Co-authored-by otherwise just use those in the limited list
DEFAULT_MERGE_MESSAGE_ALL_AUTHORS=false
; In default merge messages limit the number of approvers listed as Reviewed-by: to this many
DEFAULT_MERGE_MESSAGE_MAX_APPROVERS=10
; In default merge messages only include approvers who are official
DEFAULT_MERGE_MESSAGE_OFFICIAL_APPROVERS_ONLY=true
2018-08-14 00:34:39 +05:30
2019-02-19 02:25:04 +05:30
[repository.issue]
; List of reasons why a Pull Request or Issue can be locked
LOCK_REASONS=Too heated,Off-topic,Resolved,Spam
2019-10-16 19:12:42 +05:30
[repository.signing]
; GPG key to use to sign commits, Defaults to the default - that is the value of git config --get user.signingkey
; run in the context of the RUN_USER
; Switch to none to stop signing completely
SIGNING_KEY = default
; If a SIGNING_KEY ID is provided and is not set to default, use the provided Name and Email address as the signer.
; These should match a publicized name and email address for the key. (When SIGNING_KEY is default these are set to
; the results of git config --get user.name and git config --get user.email respectively and can only be overrided
; by setting the SIGNING_KEY ID to the correct ID.)
SIGNING_NAME =
SIGNING_EMAIL =
; Determines when gitea should sign the initial commit when creating a repository
; Either:
; - never
; - pubkey: only sign if the user has a pubkey
; - twofa: only sign if the user has logged in with twofa
; - always
; options other than none and always can be combined as comma separated list
INITIAL_COMMIT = always
; Determines when to sign for CRUD actions
; - as above
; - parentsigned: requires that the parent commit is signed.
CRUD_ACTIONS = pubkey, twofa, parentsigned
; Determines when to sign Wiki commits
; - as above
WIKI = never
; Determines when to sign on merges
; - basesigned: require that the parent of commit on the base repo is signed.
; - commitssigned: require that all the commits in the head branch are signed.
2019-12-15 16:36:31 +05:30
; - approved: only sign when merging an approved pr to a protected branch
2019-10-16 19:12:42 +05:30
MERGES = pubkey, twofa, basesigned, commitssigned
2019-05-13 21:08:53 +05:30
[cors]
; More information about CORS can be found here: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#The_HTTP_response_headers
; enable cors headers (disabled by default)
ENABLED=false
; scheme of allowed requests
SCHEME=http
; list of requesting domains that are allowed
ALLOW_DOMAIN=*
; allow subdomains of headers listed above to request
ALLOW_SUBDOMAIN=false
; list of methods allowed to request
METHODS=GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS
; max time to cache response
MAX_AGE=10m
; allow request with credentials
ALLOW_CREDENTIALS=false
2015-07-25 00:22:25 +05:30
[ui]
2018-05-11 07:13:46 +05:30
; Number of repositories that are displayed on one explore page
2015-09-01 16:34:35 +05:30
EXPLORE_PAGING_NUM = 20
2018-05-11 07:13:46 +05:30
; Number of issues that are displayed on one page
2015-07-25 00:22:25 +05:30
ISSUE_PAGING_NUM = 10
2018-05-11 07:13:46 +05:30
; Number of maximum commits displayed in one activity feed
2015-09-26 06:05:56 +05:30
FEED_MAX_COMMIT_NUM = 5
2018-07-23 19:42:06 +05:30
; Number of maximum commits displayed in commit graph.
GRAPH_MAX_COMMIT_NUM = 100
2018-08-06 10:13:22 +05:30
; Number of line of codes shown for a code comment
CODE_COMMENT_LINES = 4
2016-02-09 00:33:18 +05:30
; 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 19:24:22 +05:30
THEME_COLOR_META_TAG = `#6cc644`
2018-05-11 07:13:46 +05:30
; Max size of files to be displayed (default is 8MiB)
2016-07-12 03:51:26 +05:30
MAX_DISPLAY_FILE_SIZE = 8388608
2018-05-11 07:13:46 +05:30
; Whether the email of the user should be shown in the Explore Users page
2017-01-01 08:21:10 +05:30
SHOW_USER_EMAIL = true
2018-07-06 02:55:04 +05:30
; Set the default theme for the Gitea install
DEFAULT_THEME = gitea
2019-01-18 01:18:01 +05:30
; All available themes. Allow users select personalized themes regardless of the value of `DEFAULT_THEME`.
2019-01-09 22:52:57 +05:30
THEMES = gitea,arc-green
2019-12-02 04:27:24 +05:30
; All available reactions. Allow users react with different emoji's
2019-12-24 10:11:46 +05:30
; For the whole list look at https://gitea.com/gitea/gitea.com/issues/8
2019-12-02 04:27:24 +05:30
REACTIONS = +1, -1, laugh, hooray, confused, heart, rocket, eyes
2019-05-08 14:11:35 +05:30
; Whether the full name of the users should be shown where possible. If the full name isn't set, the username will be used.
DEFAULT_SHOW_FULL_NAME = false
2019-08-25 22:36:36 +05:30
; Whether to search within description at repository search on explore page.
SEARCH_REPO_DESCRIPTION = true
2019-11-22 01:36:23 +05:30
; Whether to enable a Service Worker to cache frontend assets
USE_SERVICE_WORKER = true
2015-07-25 00:22:25 +05:30
2015-09-12 06:12:26 +05:30
[ui.admin]
2018-05-11 07:13:46 +05:30
; Number of users that are displayed on one page
2015-09-12 06:12:26 +05:30
USER_PAGING_NUM = 50
2018-05-11 07:13:46 +05:30
; Number of repos that are displayed on one page
2015-09-26 04:08:43 +05:30
REPO_PAGING_NUM = 50
2018-10-05 14:36:47 +05:30
; Number of notices that are displayed on one page
2015-12-05 11:39:14 +05:30
NOTICE_PAGING_NUM = 25
2018-05-11 07:13:46 +05:30
; Number of organizations that are displayed on one page
2015-09-25 23:24:52 +05:30
ORG_PAGING_NUM = 50
2015-09-12 06:12:26 +05:30
2016-07-23 21:53:54 +05:30
[ui.user]
2018-05-11 07:13:46 +05:30
; Number of repos that are displayed on one page
2016-07-23 21:53:54 +05:30
REPO_PAGING_NUM = 15
2017-04-01 06:33:01 +05:30
[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 18:02:02 +05:30
[markdown]
; Enable hard line break extension
ENABLE_HARD_LINE_BREAK = false
2019-10-15 12:44:58 +05:30
; Comma separated list of custom URL-Schemes that are allowed as links when rendering Markdown
; for example git,magnet,ftp (more at https://en.wikipedia.org/wiki/List_of_URI_schemes)
; URLs starting with http and https are always displayed, whatever is put in this entry.
2016-01-27 06:35:53 +05:30
CUSTOM_URL_SCHEMES =
2016-08-11 18:18:08 +05:30
; List of file extensions that should be rendered/edited as Markdown
2018-05-11 07:13:46 +05:30
; Separate the extensions with a comma. To render files without any extension as markdown, just put a comma
2016-08-12 14:59:29 +05:30
FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd
2015-09-01 18:02:02 +05:30
2014-02-13 01:24:09 +05:30
[server]
2018-05-11 07:13:46 +05:30
; The protocol the server listens on. One of 'http', 'https', 'unix' or 'fcgi'.
2014-04-05 12:47:57 +05:30
PROTOCOL = http
2014-03-19 16:51:23 +05:30
DOMAIN = localhost
2014-05-02 04:23:41 +05:30
ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
2019-10-22 17:41:01 +05:30
; when STATIC_URL_PREFIX is empty it will follow APP_URL
2019-11-15 04:09:48 +05:30
STATIC_URL_PREFIX =
2018-05-11 07:13:46 +05:30
; The address to listen on. Either a IPv4/IPv6 address or the path to a unix socket.
2016-07-02 16:24:48 +05:30
HTTP_ADDR = 0.0.0.0
2014-05-02 04:23:41 +05:30
HTTP_PORT = 3000
2017-12-26 03:53:43 +05:30
; If REDIRECT_OTHER_PORT is true, and PROTOCOL is set to https an http server
2018-05-11 07:13:46 +05:30
; will be started on PORT_TO_REDIRECT and it will redirect plain, non-secure http requests to the main
2017-12-26 03:53:43 +05:30
; ROOT_URL. Defaults are false for REDIRECT_OTHER_PORT and 80 for
; PORT_TO_REDIRECT.
REDIRECT_OTHER_PORT = false
PORT_TO_REDIRECT = 80
2016-08-12 03:16:33 +05:30
; Permission for unix socket
UNIX_SOCKET_PERMISSION = 666
2016-11-07 18:56:13 +05:30
; Local (DMZ) URL for Gitea workers (such as SSH update) accessing web service.
2015-12-10 02:06:43 +05:30
; 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.
2018-05-22 07:05:36 +05:30
; Do not set this variable if PROTOCOL is set to 'unix'.
2016-07-02 16:24:48 +05:30
LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/
2015-02-07 21:16:57 +05:30
; Disable SSH feature when not available
DISABLE_SSH = false
2018-05-11 07:13:46 +05:30
; Whether to use the builtin SSH server or not.
2015-11-09 03:29:56 +05:30
START_SSH_SERVER = false
2018-05-11 07:13:46 +05:30
; Username to use for the builtin SSH server. If blank, then it is the value of RUN_USER.
2017-10-14 21:21:00 +05:30
BUILTIN_SSH_SERVER_USER =
2016-02-25 10:51:48 +05:30
; Domain name to be exposed in clone URL
SSH_DOMAIN = %(DOMAIN)s
2018-11-08 20:46:07 +05:30
; The network interface the builtin SSH server should listen on
2016-12-27 20:32:24 +05:30
SSH_LISTEN_HOST =
2016-02-25 10:51:48 +05:30
; Port number to be exposed in clone URL
2014-05-11 20:48:10 +05:30
SSH_PORT = 22
2018-05-11 07:13:46 +05:30
; The port number the builtin SSH server should listen on
2016-02-25 10:51:48 +05:30
SSH_LISTEN_PORT = %(SSH_PORT)s
; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'.
2016-06-29 20:41:00 +05:30
SSH_ROOT_PATH =
2018-11-01 19:11:07 +05:30
; Gitea will create a authorized_keys file by default when it is not using the internal ssh server
; If you intend to use the AuthorizedKeysCommand functionality then you should turn this off.
SSH_CREATE_AUTHORIZED_KEYS_FILE = true
2018-05-11 07:13:46 +05:30
; For the built-in SSH server, choose the ciphers to support for SSH connections,
2017-10-21 18:43:41 +05:30
; for system SSH this setting has no effect
SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, arcfour256, arcfour128
2018-05-11 07:13:46 +05:30
; For the built-in SSH server, choose the key exchange algorithms to support for SSH connections,
2017-11-02 20:56:41 +05:30
; for system SSH this setting has no effect
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
2018-05-11 07:13:46 +05:30
; For the built-in SSH server, choose the MACs to support for SSH connections,
2017-11-02 20:56:41 +05:30
; for system SSH this setting has no effect
SSH_SERVER_MACS = hmac-sha2-256-etm@openssh.com, hmac-sha2-256, hmac-sha1, hmac-sha1-96
2018-05-11 07:13:46 +05:30
; Directory to create temporary files in when testing public keys using ssh-keygen,
; default is the system temporary directory.
2016-02-28 07:18:39 +05:30
SSH_KEY_TEST_PATH =
2018-05-11 07:13:46 +05:30
; Path to ssh-keygen, default is 'ssh-keygen' which means the shell is responsible for finding out which one to call.
2016-02-28 07:18:39 +05:30
SSH_KEYGEN_PATH = ssh-keygen
2017-06-28 07:05:35 +05:30
; Enable SSH Authorized Key Backup when rewriting all keys, default is true
SSH_BACKUP_AUTHORIZED_KEYS = true
2017-07-15 19:51:51 +05:30
; Enable exposure of SSH clone URL to anonymous visitors, default is false
SSH_EXPOSE_ANONYMOUS = false
2016-02-28 07:18:39 +05:30
; Indicate whether to check minimum key size with corresponding type
MINIMUM_KEY_SIZE_CHECK = false
2014-04-27 12:35:13 +05:30
; Disable CDN even in "prod" mode
OFFLINE_MODE = false
2014-05-06 23:17:47 +05:30
DISABLE_ROUTER_LOG = false
2014-04-21 06:22:00 +05:30
; Generate steps:
2016-11-07 19:23:29 +05:30
; $ ./gitea cert -ca=true -duration=8760h0m0s -host=myhost.example.com
2014-11-28 03:12:06 +05:30
;
; 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
2020-01-20 00:37:44 +05:30
; Paths are relative to CUSTOM_PATH
CERT_FILE = https/cert.pem
KEY_FILE = https/key.pem
2018-05-11 07:13:46 +05:30
; Root directory containing templates and static files.
2016-11-07 18:56:13 +05:30
; default is the path where Gitea is executed
2014-08-30 18:42:53 +05:30
STATIC_ROOT_PATH =
2016-03-10 07:46:43 +05:30
; Default path for App data
APP_DATA_PATH = data
2014-07-26 09:54:27 +05:30
; Application level GZIP support
2014-10-14 03:34:07 +05:30
ENABLE_GZIP = false
2018-08-08 00:19:18 +05:30
; Application profiling (memory and cpu)
; For "web" command it listens on localhost:6060
; For "serve" command it dumps to disk at PPROF_DATA_PATH as (cpuprofile|memprofile)_<username>_<temporary id>
ENABLE_PPROF = false
; PPROF_DATA_PATH, use an absolute path when you start gitea as service
PPROF_DATA_PATH = data/tmp/pprof
2020-01-06 22:20:44 +05:30
; Landing page, can be "home", "explore", "organizations" or "login"
; The "login" choice is not a security measure but just a UI flow change, use REQUIRE_SIGNIN_VIEW to force users to log in.
2014-11-25 05:17:59 +05:30
LANDING_PAGE = home
2017-06-23 14:09:17 +05:30
; Enables git-lfs support. true or false, default is false.
LFS_START_SERVER = false
2018-05-11 07:13:46 +05:30
; Where your lfs files reside, default is data/lfs.
2017-06-23 14:09:17 +05:30
LFS_CONTENT_PATH = data/lfs
2018-05-11 07:13:46 +05:30
; LFS authentication secret, change this yourself
2017-12-14 03:52:59 +05:30
LFS_JWT_SECRET =
2018-05-29 13:37:16 +05:30
; LFS authentication validity period (in time.Duration), pushes taking longer than this may fail.
LFS_HTTP_AUTH_EXPIRY = 20m
2019-10-15 19:09:51 +05:30
; Allow graceful restarts using SIGHUP to fork
ALLOW_GRACEFUL_RESTARTS = true
; After a restart the parent will finish ongoing requests before
; shutting down. Force shutdown if this process takes longer than this delay.
; set to a negative value to disable
GRACEFUL_HAMMER_TIME = 60s
2019-11-22 00:02:02 +05:30
; Allows the setting of a startup timeout and waithint for Windows as SVC service
; 0 disables this.
STARTUP_TIMEOUT = 0
2019-10-15 03:35:57 +05:30
; Static resources, includes resources on custom/, public/ and all uploaded avatars web browser cache time, default is 6h
STATIC_CACHE_TIME = 6h
2014-02-19 04:18:02 +05:30
2016-02-28 07:18:39 +05:30
; Define allowed algorithms and their minimum key length (use -1 to disable a type)
[ssh.minimum_key_sizes]
ED25519 = 256
2017-12-14 03:52:59 +05:30
ECDSA = 256
RSA = 2048
DSA = 1024
2016-02-28 07:18:39 +05:30
2014-02-19 04:18:02 +05:30
[database]
2017-03-10 07:03:19 +05:30
; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice
2014-02-19 04:18:02 +05:30
DB_TYPE = mysql
2014-03-29 11:10:22 +05:30
HOST = 127.0.0.1:3306
2016-11-07 18:56:13 +05:30
NAME = gitea
2014-02-19 04:18:02 +05:30
USER = root
2018-01-28 00:05:49 +05:30
; Use PASSWD = `your password` for quoting if you use special characters in the password.
2014-03-10 14:25:53 +05:30
PASSWD =
2020-01-20 21:15:14 +05:30
; For Postgres, schema to use if different from "public". The schema must exist beforehand,
; the user must have creation privileges on it, and the user search path must be set
; to the look into the schema first. e.g.:ALTER USER user SET SEARCH_PATH = schema_name,"$user",public;
SCHEMA =
2018-08-24 04:12:02 +05:30
; For Postgres, either "disable" (default), "require", or "verify-full"
; For MySQL, either "false" (default), "true", or "skip-verify"
2014-03-17 23:33:58 +05:30
SSL_MODE = disable
2019-05-24 09:45:26 +05:30
; For MySQL only, either "utf8" or "utf8mb4", default is "utf8".
; NOTICE: for "utf8mb4" you must use MySQL InnoDB > 5.6. Gitea is unable to check this.
CHARSET = utf8
2018-08-08 00:19:18 +05:30
; For "sqlite3" and "tidb", use an absolute path when you start gitea as service
2016-11-07 18:56:13 +05:30
PATH = data/gitea.db
2017-06-15 08:21:17 +05:30
; For "sqlite3" only. Query timeout
SQLITE_TIMEOUT = 500
2017-10-21 11:56:23 +05:30
; For iterate buffer, default is 50
ITERATE_BUFFER_SIZE = 50
2018-03-30 20:19:46 +05:30
; Show the database generated SQL
LOG_SQL = true
2019-01-20 02:47:08 +05:30
; Maximum number of DB Connect retries
DB_RETRIES = 10
; Backoff time per DB retry (time.Duration)
DB_RETRY_BACKOFF = 3s
2019-10-22 02:50:47 +05:30
; Max idle database connections on connnection pool, default is 2
MAX_IDLE_CONNS = 2
; Database connection max life time, default is 0 or 3s mysql (See #6804 & #7071 for reasoning)
2019-08-24 14:54:45 +05:30
CONN_MAX_LIFETIME = 3s
2019-10-22 02:50:47 +05:30
; Database maximum number of open connections, default is 0 meaning no maximum
MAX_OPEN_CONNS = 0
2019-01-20 02:47:08 +05:30
2017-01-25 08:13:02 +05:30
[indexer]
2019-02-21 10:31:28 +05:30
; Issue indexer type, currently support: bleve or db, default is bleve
ISSUE_INDEXER_TYPE = bleve
; Issue indexer storage path, available when ISSUE_INDEXER_TYPE is bleve
2017-01-25 08:13:02 +05:30
ISSUE_INDEXER_PATH = indexers/issues.bleve
2019-07-17 21:53:54 +05:30
; Issue indexer queue, currently support: channel, levelqueue or redis, default is levelqueue
2019-02-21 10:31:28 +05:30
ISSUE_INDEXER_QUEUE_TYPE = levelqueue
2019-04-02 13:18:31 +05:30
; When ISSUE_INDEXER_QUEUE_TYPE is levelqueue, this will be the queue will be saved path,
2019-02-21 10:31:28 +05:30
; default is indexers/issues.queue
ISSUE_INDEXER_QUEUE_DIR = indexers/issues.queue
2019-04-08 14:35:15 +05:30
; When `ISSUE_INDEXER_QUEUE_TYPE` is `redis`, this will store the redis connection string.
ISSUE_INDEXER_QUEUE_CONN_STR = "addrs=127.0.0.1:6379 db=0"
2019-02-21 10:31:28 +05:30
; Batch queue number, default is 20
ISSUE_INDEXER_QUEUE_BATCH_NUMBER = 20
2019-10-15 19:09:51 +05:30
; Timeout the indexer if it takes longer than this to start.
; Set to zero to disable timeout.
STARTUP_TIMEOUT=30s
2019-02-21 10:31:28 +05:30
2017-10-27 11:40:54 +05:30
; repo indexer by default disabled, since it uses a lot of disk space
REPO_INDEXER_ENABLED = false
REPO_INDEXER_PATH = indexers/repos.bleve
2017-01-25 08:13:02 +05:30
UPDATE_BUFFER_LEN = 20
2017-10-27 11:40:54 +05:30
MAX_FILE_SIZE = 1048576
2019-09-11 22:56:28 +05:30
; A comma separated list of glob patterns (see https://github.com/gobwas/glob) to include
; in the index; default is empty
REPO_INDEXER_INCLUDE =
; A comma separated list of glob patterns to exclude from the index; ; default is empty
REPO_INDEXER_EXCLUDE =
2017-01-25 08:13:02 +05:30
2020-01-07 16:53:09 +05:30
[queue]
; Specific queues can be individually configured with [queue.name]. [queue] provides defaults
;
; General queue queue type, currently support: persistable-channel, channel, level, redis, dummy
; default to persistable-channel
TYPE = persistable-channel
; data-dir for storing persistable queues and level queues, individual queues will be named by their type
DATADIR = queues/
; Default queue length before a channel queue will block
LENGTH = 20
; Batch size to send for batched queues
BATCH_LENGTH = 20
; Connection string for redis queues this will store the redis connection string.
CONN_STR = "addrs=127.0.0.1:6379 db=0"
; Provide the suffix of the default redis queue name - specific queues can be overriden within in their [queue.name] sections.
QUEUE_NAME = "_queue"
; If the queue cannot be created at startup - level queues may need a timeout at startup - wrap the queue:
WRAP_IF_NECESSARY = true
; Attempt to create the wrapped queue at max
MAX_ATTEMPTS = 10
; Timeout queue creation
TIMEOUT = 15m30s
; Create a pool with this many workers
WORKERS = 1
; Dynamically scale the worker pool to at this many workers
MAX_WORKERS = 10
; Add boost workers when the queue blocks for BLOCK_TIMEOUT
BLOCK_TIMEOUT = 1s
; Remove the boost workers after BOOST_TIMEOUT
BOOST_TIMEOUT = 5m
; During a boost add BOOST_WORKERS
BOOST_WORKERS = 5
2014-03-21 10:39:22 +05:30
[admin]
2018-05-11 07:13:46 +05:30
; Disallow regular (non-admin) users from creating organizations.
2017-02-14 17:46:00 +05:30
DISABLE_REGULAR_ORG_CREATION = false
2019-08-29 19:35:42 +05:30
; Default configuration for email notifications for users (user configurable). Options: enabled, onmention, disabled
DEFAULT_EMAIL_NOTIFICATIONS = enabled
2014-03-06 21:40:35 +05:30
[security]
2017-01-02 10:02:21 +05:30
; Whether the installer is disabled
2014-03-31 19:42:36 +05:30
INSTALL_LOCK = false
2014-03-18 11:03:53 +05:30
; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
2014-03-19 16:51:23 +05:30
SECRET_KEY = !#@FDEWREWR&*(
2019-08-14 08:58:11 +05:30
; How long to remember that a user is logged in before requiring relogin (in days)
2014-03-23 02:10:09 +05:30
LOGIN_REMEMBER_DAYS = 7
2016-11-07 18:56:13 +05:30
COOKIE_USERNAME = gitea_awesome
COOKIE_REMEMBER_NAME = gitea_incredible
2014-06-24 23:25:47 +05:30
; Reverse proxy authentication header name of user name
REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
2018-12-18 22:35:48 +05:30
REVERSE_PROXY_AUTHENTICATION_EMAIL = X-WEBAUTH-EMAIL
2018-05-11 07:13:46 +05:30
; The minimum password length for new Users
2016-12-24 19:10:44 +05:30
MIN_PASSWORD_LENGTH = 6
2018-11-05 07:51:56 +05:30
; Set to true to allow users to import local server paths
2017-01-23 06:49:50 +05:30
IMPORT_LOCAL_PATHS = false
2018-11-05 07:51:56 +05:30
; Set to true to prevent all users (including admin) from creating custom git hooks
2017-09-12 14:55:42 +05:30
DISABLE_GIT_HOOKS = false
2019-11-15 04:09:48 +05:30
; Set to false to allow pushes to gitea repositories despite having an incomplete environment - NOT RECOMMENDED
ONLY_ALLOW_PUSH_IF_GITEA_ENVIRONMENT_SET = true
2019-10-14 20:54:26 +05:30
;Comma separated list of character classes required to pass minimum complexity.
2019-10-16 08:39:58 +05:30
;If left empty or no valid values are specified, the default values ("lower,upper,digit,spec") will be used.
;Use "off" to disable checking.
2019-10-14 20:54:26 +05:30
PASSWORD_COMPLEXITY = lower,upper,digit,spec
2019-07-07 11:31:01 +05:30
; Password Hash algorithm, either "pbkdf2", "argon2", "scrypt" or "bcrypt"
PASSWORD_HASH_ALGO = pbkdf2
2019-07-12 19:27:31 +05:30
; Set false to allow JavaScript to read CSRF cookie
CSRF_COOKIE_HTTP_ONLY = true
2014-03-19 16:51:23 +05:30
2017-03-17 19:46:08 +05:30
[openid]
;
2018-05-11 07:13:46 +05:30
; OpenID is an open, standard and decentralized authentication protocol.
2017-03-17 19:46:08 +05:30
; 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-17 21:45:01 +05:30
; - <username>.livejournal.com
2017-03-17 19:46:08 +05:30
;
; Whether to allow signin in via OpenID
ENABLE_OPENID_SIGNIN = true
; Whether to allow registering via OpenID
2018-05-11 07:13:46 +05:30
; Do not include to rely on rhw DISABLE_REGISTRATION setting
2017-03-29 16:27:43 +05:30
;ENABLE_OPENID_SIGNUP = true
2017-03-17 19:46:08 +05:30
; 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).
2017-10-18 07:41:23 +05:30
; Space separated.
2017-03-17 19:46:08 +05:30
; Only used if WHITELISTED_URIS is blank.
; Example value: loadaverage.org/badguy stackexchange.com/.*spammer
BLACKLISTED_URIS =
2014-03-19 16:51:23 +05:30
[service]
2017-05-29 13:05:47 +05:30
; Time limit to confirm account/email registration
2014-03-19 16:51:23 +05:30
ACTIVE_CODE_LIVE_MINUTES = 180
2018-05-11 07:13:46 +05:30
; Time limit to perform the reset of a forgotten password
2014-03-19 16:51:23 +05:30
RESET_PASSWD_CODE_LIVE_MINUTES = 180
2018-05-11 07:13:46 +05:30
; Whether a new user needs to confirm their email when registering.
2014-03-19 17:57:27 +05:30
REGISTER_EMAIL_CONFIRM = false
2018-11-15 06:30:04 +05:30
; List of domain names that are allowed to be used to register on a Gitea instance
; gitea.io,example.com
EMAIL_DOMAIN_WHITELIST=
2018-05-11 07:13:46 +05:30
; Disallow registration, only allow admins to create accounts.
2014-04-22 03:33:04 +05:30
DISABLE_REGISTRATION = false
2018-11-25 21:59:44 +05:30
; Allow registration only using third-party services, it works only when DISABLE_REGISTRATION is false
2018-05-13 13:21:16 +05:30
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
2014-03-21 11:29:15 +05:30
; User must sign in to view anything.
REQUIRE_SIGNIN_VIEW = false
2014-03-24 04:39:11 +05:30
; Mail notification
ENABLE_NOTIFY_MAIL = false
2019-10-19 19:57:15 +05:30
; This setting enables gitea to be signed in with HTTP BASIC Authentication using the user's password
; If you set this to false you will not be able to access the tokens endpoints on the API with your password
; Please note that setting this to false will not disable OAuth Basic or Basic authentication using a token
ENABLE_BASIC_AUTHENTICATION = true
2017-12-30 09:49:38 +05:30
; More detail: https://github.com/gogits/gogs/issues/165
2014-06-21 10:21:41 +05:30
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
2015-03-12 22:55:28 +05:30
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
2018-12-18 22:35:48 +05:30
ENABLE_REVERSE_PROXY_EMAIL = false
2015-09-13 20:37:21 +05:30
; Enable captcha validation for registration
2018-07-05 09:43:05 +05:30
ENABLE_CAPTCHA = false
; Type of captcha you want to use. Options: image, recaptcha
CAPTCHA_TYPE = image
; Enable recaptcha to use Google's recaptcha service
; Go to https://www.google.com/recaptcha/admin to sign up for a key
2018-11-25 21:59:44 +05:30
RECAPTCHA_SECRET =
RECAPTCHA_SITEKEY =
2019-05-02 18:39:39 +05:30
; Change this to use recaptcha.net or other recaptcha service
RECAPTCHA_URL = https://www.google.com/recaptcha/
2017-01-08 08:42:03 +05:30
; Default value for KeepEmailPrivate
2018-05-11 07:13:46 +05:30
; Each new user will get the value of this setting copied into their profile
2017-01-08 08:42:03 +05:30
DEFAULT_KEEP_EMAIL_PRIVATE = false
2017-05-09 01:21:53 +05:30
; Default value for AllowCreateOrganization
2018-05-11 07:13:46 +05:30
; Every new user will have rights set to create organizations depending on this setting
2017-05-09 01:21:53 +05:30
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
2019-02-18 21:30:27 +05:30
; Either "public", "limited" or "private", default is "public"
; Limited is for signed user only
; Private is only for member of the organization
; Public is for everyone
DEFAULT_ORG_VISIBILITY = public
2019-08-24 17:58:59 +05:30
; Default value for DefaultOrgMemberVisible
2019-10-14 20:54:26 +05:30
; True will make the membership of the users visible when added to the organisation
2019-08-24 17:58:59 +05:30
DEFAULT_ORG_MEMBER_VISIBLE = false
2018-07-18 02:53:58 +05:30
; Default value for EnableDependencies
2018-11-25 21:59:44 +05:30
; Repositories will use dependencies by default depending on this setting
2018-07-18 02:53:58 +05:30
DEFAULT_ENABLE_DEPENDENCIES = true
Allow cross-repository dependencies on issues (#7901)
* in progress changes for #7405, added ability to add cross-repo dependencies
* removed unused repolink var
* fixed query that was breaking ci tests; fixed check in issue dependency add so that the id of the issue and dependency is checked rather than the indexes
* reverted removal of string in local files becasue these are done via crowdin, not updated manually
* removed 'Select("issue.*")' from getBlockedByDependencies and getBlockingDependencies based on comments in PR review
* changed getBlockedByDependencies and getBlockingDependencies to use a more xorm-like query, also updated the sidebar as a result
* simplified the getBlockingDependencies and getBlockedByDependencies methods; changed the sidebar to show the dependencies in a different format where you can see the name of the repository
* made some changes to the issue view in the dependencies (issue name on top, repo full name on separate line). Change view of issue in the dependency search results (also showing the full repo name on separate line)
* replace call to FindUserAccessibleRepoIDs with SearchRepositoryByName. The former was hardcoded to use isPrivate = false on the repo search, but this code needed it to be true. The SearchRepositoryByName method is used more in the code including on the user's dashboard
* some more tweaks to the layout of the issues when showing dependencies and in the search box when you add new dependencies
* added Name to the RepositoryMeta struct
* updated swagger doc
* fixed total count for link header on SearchIssues
* fixed indentation
* fixed aligment of remove icon on dependencies in issue sidebar
* removed unnecessary nil check (unnecessary because issue.loadRepo is called prior to this block)
* reverting .css change, somehow missed or forgot that less is used
* updated less file and generated css; updated sidebar template with styles to line up delete and issue index
* added ordering to the blocked by/depends on queries
* fixed sorting in issue dependency search and the depends on/blocks views to show issues from the current repo first, then by created date descending; added a "all cross repository dependencies" setting to allow this feature to be turned off, if turned off, the issue dependency search will work the way it did before (restricted to the current repository)
* re-applied my swagger changes after merge
* fixed split string condition in issue search
* changed ALLOW_CROSS_REPOSITORY_DEPENDENCIES description to sound more global than just the issue dependency search; returning 400 in the cross repo issue search api method if not enabled; fixed bug where the issue count did not respect the state parameter
* when adding a dependency to an issue, added a check to make sure the issue and dependency are in the same repo if cross repo dependencies is not enabled
* updated sortIssuesSession call in PullRequests, another commit moved this method from pull.go to pull_list.go so I had to re-apply my change here
* fixed incorrect setting of user id parameter in search repos call
2019-10-31 10:36:10 +05:30
; Dependencies can be added from any repository where the user is granted access or only from the current repository depending on this setting.
ALLOW_CROSS_REPOSITORY_DEPENDENCIES = true
2018-11-20 15:24:09 +05:30
; Enable heatmap on users profiles.
ENABLE_USER_HEATMAP = true
2018-04-09 20:45:32 +05:30
; Enable Timetracking
ENABLE_TIMETRACKING = true
2017-09-12 12:18:13 +05:30
; Default value for EnableTimetracking
; Repositories will use timetracking by default depending on this setting
DEFAULT_ENABLE_TIMETRACKING = true
; Default value for AllowOnlyContributorsToTrackTime
2018-05-11 07:13:46 +05:30
; Only users with write permissions can track time if this is true
2017-09-12 12:18:13 +05:30
DEFAULT_ALLOW_ONLY_CONTRIBUTORS_TO_TRACK_TIME = true
2017-01-08 08:42:03 +05:30
; Default value for the domain part of the user's email address in the git log
2018-05-11 07:13:46 +05:30
; if he has set KeepEmailPrivate to true. The user's email will be replaced with a
2017-01-08 08:42:03 +05:30
; concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS.
2019-12-14 09:44:43 +05:30
NO_REPLY_ADDRESS = noreply.%(DOMAIN)s
2019-01-20 04:52:47 +05:30
; Show Registration button
SHOW_REGISTRATION_BUTTON = true
2019-12-15 19:50:08 +05:30
; Show milestones dashboard page - a view of all the user's milestones
SHOW_MILESTONES_DASHBOARD_PAGE = true
2019-01-27 14:55:21 +05:30
; Default value for AutoWatchNewRepos
2019-04-02 13:18:31 +05:30
; When adding a repo to a team or creating a new repo all team members will watch the
; repo automatically if enabled
2019-01-27 14:55:21 +05:30
AUTO_WATCH_NEW_REPOS = true
2019-11-10 14:52:19 +05:30
; Default value for AutoWatchOnChanges
; Make the user watch a repository When they commit for the first time
AUTO_WATCH_ON_CHANGES = false
2014-03-18 11:03:53 +05:30
2014-06-08 14:15:34 +05:30
[webhook]
2016-08-31 04:48:33 +05:30
; Hook task queue length, increase if webhook shooting starts hanging
2015-07-25 19:02:04 +05:30
QUEUE_LENGTH = 1000
2014-06-08 14:15:34 +05:30
; Deliver timeout in seconds
DELIVER_TIMEOUT = 5
2015-02-11 07:36:59 +05:30
; Allow insecure certification
2015-02-11 22:34:01 +05:30
SKIP_TLS_VERIFY = false
2015-08-27 20:36:14 +05:30
; Number of history information in each page
PAGING_NUM = 10
2019-11-09 02:55:53 +05:30
; Proxy server URL, support http://, https//, socks://, blank will follow environment http_proxy/https_proxy
2019-11-15 04:09:48 +05:30
PROXY_URL =
2019-11-09 02:55:53 +05:30
; Comma separated list of host names requiring proxy. Glob patterns (*) are accepted; use ** to match all hosts.
2019-11-15 04:09:48 +05:30
PROXY_HOSTS =
2014-06-08 14:15:34 +05:30
2014-03-18 11:03:53 +05:30
[mailer]
2014-03-18 13:49:10 +05:30
ENABLED = false
2014-03-20 06:35:48 +05:30
; Buffer length of channel, keep it as it is if you don't know what it is.
2015-09-17 08:38:46 +05:30
SEND_BUFFER_LEN = 100
2019-04-17 10:26:40 +05:30
; Prefix displayed before subject in mail
SUBJECT_PREFIX =
2014-03-18 11:03:53 +05:30
; Mail server
2014-03-19 17:57:27 +05:30
; Gmail: smtp.gmail.com:587
2016-06-30 01:34:15 +05:30
; QQ: smtp.qq.com:465
2014-12-18 17:04:30 +05:30
; 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-29 20:41:00 +05:30
HOST =
2018-05-11 07:13:46 +05:30
; Disable HELO operation when hostnames are different.
2016-06-29 20:41:00 +05:30
DISABLE_HELO =
2018-05-11 07:13:46 +05:30
; Custom hostname for HELO operation, if no value is provided, one is retrieved from system.
2016-06-29 20:41:00 +05:30
HELO_HOSTNAME =
2014-12-18 17:04:30 +05:30
; Do not verify the certificate of the server. Only use this for self-signed certificates
2016-06-29 20:41:00 +05:30
SKIP_VERIFY =
2015-02-13 13:03:55 +05:30
; Use client certificate
2015-02-13 13:36:12 +05:30
USE_CERTIFICATE = false
CERT_FILE = custom/mailer/cert.pem
KEY_FILE = custom/mailer/key.pem
2018-11-27 00:51:42 +05:30
; Should SMTP connection use TLS
IS_TLS_ENABLED = false
2016-06-29 20:41:00 +05:30
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
2014-08-30 18:42:53 +05:30
FROM =
2014-03-18 11:03:53 +05:30
; Mailer user name and password
2014-08-30 18:42:53 +05:30
USER =
2018-01-28 00:05:49 +05:30
; Use PASSWD = `your password` for quoting if you use special characters in the password.
2014-08-30 18:42:53 +05:30
PASSWD =
2017-06-07 06:44:31 +05:30
; Send mails as plain text
SEND_AS_PLAIN_TEXT = false
2019-02-03 07:36:52 +05:30
; Set Mailer Type (either SMTP, sendmail or dummy to just send to the log)
MAILER_TYPE = smtp
2017-10-18 07:41:23 +05:30
; Specify an alternative sendmail binary
2016-12-25 19:25:22 +05:30
SENDMAIL_PATH = sendmail
2017-10-26 00:57:25 +05:30
; Specify any extra sendmail arguments
SENDMAIL_ARGS =
2014-03-19 12:54:17 +05:30
2014-03-21 18:36:47 +05:30
[cache]
2014-03-21 19:39:57 +05:30
; Either "memory", "redis", or "memcache", default is "memory"
2014-03-21 18:36:47 +05:30
ADAPTER = memory
2014-03-21 19:39:57 +05:30
; For "memory" only, GC interval in seconds, default is 60
INTERVAL = 60
; For "redis" and "memcache", connection host address
2015-01-17 12:47:53 +05:30
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 09:54:27 +05:30
; memcache: `127.0.0.1:11211`
2014-03-21 19:39:57 +05:30
HOST =
2017-10-26 07:07:33 +05:30
; Time to keep items in cache if not used, default is 16 hours.
; Setting it to 0 disables caching
ITEM_TTL = 16h
2014-03-21 18:36:47 +05:30
2014-03-22 18:19:53 +05:30
[session]
2016-07-02 15:53:15 +05:30
; Either "memory", "file", or "redis", default is "memory"
2014-12-21 09:21:16 +05:30
PROVIDER = memory
2014-03-22 18:51:57 +05:30
; Provider config options
2018-05-11 07:13:46 +05:30
; memory: doesn't have any config yet
2014-07-26 09:54:27 +05:30
; file: session file path, e.g. `data/sessions`
2015-01-17 12:47:53 +05:30
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 09:54:27 +05:30
; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
2014-03-22 18:19:53 +05:30
PROVIDER_CONFIG = data/sessions
2014-03-22 18:51:57 +05:30
; Session cookie name
2016-12-27 20:32:24 +05:30
COOKIE_NAME = i_like_gitea
2014-03-22 18:51:57 +05:30
; If you use session in https only, default is false
2014-03-22 18:19:53 +05:30
COOKIE_SECURE = false
2014-03-22 18:51:57 +05:30
; Enable set cookie, default is true
2014-03-22 18:19:53 +05:30
ENABLE_SET_COOKIE = true
2017-03-18 08:40:30 +05:30
; Session GC time interval in seconds, default is 86400 (1 day)
2014-03-22 18:19:53 +05:30
GC_INTERVAL_TIME = 86400
2017-03-18 08:40:30 +05:30
; Session life time in seconds, default is 86400 (1 day)
2014-03-22 18:19:53 +05:30
SESSION_LIFE_TIME = 86400
2014-03-22 16:12:19 +05:30
[picture]
2014-11-21 21:28:08 +05:30
AVATAR_UPLOAD_PATH = data/avatars
2019-05-30 07:52:26 +05:30
REPOSITORY_AVATAR_UPLOAD_PATH = data/repo-avatars
2019-06-02 12:10:12 +05:30
; How Gitea deals with missing repository avatars
; none = no avatar will be displayed; random = random avatar will be displayed; image = default image will be used
REPOSITORY_AVATAR_FALLBACK = none
REPOSITORY_AVATAR_FALLBACK_IMAGE = /img/repo_default.png
2019-05-30 07:52:26 +05:30
; Max Width and Height of uploaded avatars.
; This is to limit the amount of RAM used when resizing the image.
2018-07-03 09:26:32 +05:30
AVATAR_MAX_WIDTH = 4096
AVATAR_MAX_HEIGHT = 3072
2019-05-30 07:52:26 +05:30
; Maximum alloved file size for uploaded avatars.
; This is to limit the amount of RAM used when resizing the image.
AVATAR_MAX_FILE_SIZE = 1048576
2014-11-17 06:57:04 +05:30
; Chinese users can choose "duoshuo"
2015-08-10 06:14:43 +05:30
; or a custom avatar source, like: http://cn.gravatar.com/avatar/
2014-11-17 06:57:04 +05:30
GRAVATAR_SOURCE = gravatar
2018-05-11 07:13:46 +05:30
; This value will always be true in offline mode.
2014-05-02 07:00:04 +05:30
DISABLE_GRAVATAR = false
2016-08-07 22:57:38 +05:30
; Federated avatar lookup uses DNS to discover avatar associated
2016-08-23 22:20:33 +05:30
; with emails, see https://www.libravatar.org
2018-05-11 07:13:46 +05:30
; This value will always be false in offline mode or when Gravatar is disabled.
2016-08-07 22:57:38 +05:30
ENABLE_FEDERATED_AVATAR = false
2014-03-22 16:12:19 +05:30
2014-07-24 00:45:47 +05:30
[attachment]
2014-07-24 19:21:40 +05:30
; Whether attachments are enabled. Defaults to `true`
2018-05-28 20:26:54 +05:30
ENABLED = true
2014-07-26 09:54:27 +05:30
; Path for attachments. Defaults to `data/attachments`
PATH = data/attachments
2014-07-24 00:45:47 +05:30
; One or more allowed types, e.g. image/jpeg|image/png
2017-01-15 20:27:00 +05:30
ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
2018-05-11 07:13:46 +05:30
; Max size of each file. Defaults to 4MB
2015-09-03 01:48:09 +05:30
MAX_SIZE = 4
2018-05-11 07:13:46 +05:30
; Max number of files per upload. Defaults to 5
2015-08-11 20:54:40 +05:30
MAX_FILES = 5
2014-07-24 00:45:47 +05:30
2014-07-25 02:01:59 +05:30
[time]
2017-10-18 07:41:23 +05:30
; Specifies the format for fully outputted dates. Defaults to RFC1123
2014-07-25 02:01:59 +05:30
; 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 18:42:53 +05:30
FORMAT =
2019-08-15 20:16:21 +05:30
; Location the UI time display i.e. Asia/Shanghai
; Empty means server's location setting
DEFAULT_UI_LOCATION =
2014-07-25 02:01:59 +05:30
2014-03-19 12:54:17 +05:30
[log]
2014-05-28 11:23:06 +05:30
ROOT_PATH =
2014-03-23 03:29:22 +05:30
; Either "console", "file", "conn", "smtp" or "database", default is "console"
2014-05-12 00:07:12 +05:30
; Use comma to separate multiple modes, e.g. "console, file"
2014-03-19 12:54:17 +05:30
MODE = console
2018-05-11 07:13:46 +05:30
; Buffer length of the channel, keep it as it is if you don't know what it is.
2014-03-19 12:54:17 +05:30
BUFFER_LEN = 10000
2019-02-06 08:36:41 +05:30
REDIRECT_MACARON_LOG = false
2019-04-02 13:18:31 +05:30
MACARON = file
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Info"
ROUTER_LOG_LEVEL = Info
ROUTER = console
ENABLE_ACCESS_LOG = false
ACCESS_LOG_TEMPLATE = {{.Ctx.RemoteAddr}} - {{.Identity}} {{.Start.Format "[02/Jan/2006:15:04:05 -0700]" }} "{{.Ctx.Req.Method}} {{.Ctx.Req.RequestURI}} {{.Ctx.Req.Proto}}" {{.ResponseWriter.Status}} {{.ResponseWriter.Size}} "{{.Ctx.Req.Referer}}\" \"{{.Ctx.Req.UserAgent}}"
ACCESS = file
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace"
LEVEL = Info
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "None"
STACKTRACE_LEVEL = None
; Generic log modes
[log.x]
FLAGS = stdflags
EXPRESSION =
PREFIX =
COLORIZE = false
2014-03-19 12:54:17 +05:30
2014-03-19 13:38:25 +05:30
; For "console" mode only
2014-03-19 12:54:17 +05:30
[log.console]
2014-08-30 18:42:53 +05:30
LEVEL =
2019-04-02 13:18:31 +05:30
STDERR = false
2014-03-19 12:54:17 +05:30
; For "file" mode only
[log.file]
2014-08-30 18:42:53 +05:30
LEVEL =
2019-04-02 13:18:31 +05:30
; Set the file_name for the logger. If this is a relative path this
; will be relative to ROOT_PATH
FILE_NAME =
2014-03-19 12:54:17 +05:30
; This enables automated log rotate(switch of following options), default is true
2014-03-19 13:38:25 +05:30
LOG_ROTATE = true
2018-05-11 07:13:46 +05:30
; Max number of lines in a single file, default is 1000000
2014-03-19 12:54:17 +05:30
MAX_LINES = 1000000
2018-05-11 07:13:46 +05:30
; Max size shift of a single file, default is 28 means 1 << 28, 256MB
2014-03-19 13:38:25 +05:30
MAX_SIZE_SHIFT = 28
2014-03-19 12:54:17 +05:30
; Segment log daily, default is true
DAILY_ROTATE = true
2018-05-11 07:13:46 +05:30
; delete the log file after n days, default is 7
2014-03-19 12:54:17 +05:30
MAX_DAYS = 7
2019-04-02 13:18:31 +05:30
; compress logs with gzip
COMPRESS = true
; compression level see godoc for compress/gzip
COMPRESSION_LEVEL = -1
2014-03-19 12:54:17 +05:30
; For "conn" mode only
[log.conn]
2014-08-30 18:42:53 +05:30
LEVEL =
2014-03-19 12:54:17 +05:30
; 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 18:42:53 +05:30
ADDR =
2014-03-19 12:54:17 +05:30
; For "smtp" mode only
[log.smtp]
2014-08-30 18:42:53 +05:30
LEVEL =
2015-12-09 11:02:53 +05:30
; Name displayed in mail title, default is "Diagnostic message from server"
SUBJECT = Diagnostic message from server
2014-03-19 12:54:17 +05:30
; Mail server
2014-08-30 18:42:53 +05:30
HOST =
2014-03-19 12:54:17 +05:30
; Mailer user name and password
2014-08-30 18:42:53 +05:30
USER =
2018-01-28 00:05:49 +05:30
; Use PASSWD = `your password` for quoting if you use special characters in the password.
2014-03-19 12:54:17 +05:30
PASSWD =
2016-12-22 17:57:13 +05:30
; Receivers, can be one or more, e.g. 1@example.com,2@example.com
2014-08-30 18:42:53 +05:30
RECEIVERS =
2014-03-23 03:29:22 +05:30
2015-08-17 23:49:29 +05:30
[cron]
; Enable running cron tasks periodically.
ENABLED = true
2016-11-07 18:56:13 +05:30
; Run cron tasks when Gitea starts.
2015-08-17 23:49:29 +05:30
RUN_AT_START = false
; Update mirrors
[cron.update_mirrors]
2016-07-23 17:50:09 +05:30
SCHEDULE = @every 10m
2015-08-17 23:49:29 +05:30
; Repository health check
[cron.repo_health_check]
SCHEDULE = @every 24h
2015-12-09 22:08:12 +05:30
TIMEOUT = 60s
2015-12-12 07:53:19 +05:30
; Arguments for command 'git fsck', e.g. "--unreachable --tags"
2018-12-05 04:10:42 +05:30
; see more on http://git-scm.com/docs/git-fsck
2016-06-29 20:41:00 +05:30
ARGS =
2015-08-17 23:49:29 +05:30
; Check repository statistics
[cron.check_repo_stats]
RUN_AT_START = true
SCHEDULE = @every 24h
2017-02-11 09:30:46 +05:30
; Clean up old repository archives
[cron.archive_cleanup]
2017-12-17 20:07:34 +05:30
; Whether to enable the job
ENABLED = true
; Whether to always run at least once at start up time (if ENABLED)
2017-02-11 09:30:46 +05:30
RUN_AT_START = true
2017-12-17 20:07:34 +05:30
; Time interval for job to run
2017-02-11 09:30:46 +05:30
SCHEDULE = @every 24h
; Archives created more than OLDER_THAN ago are subject to deletion
OLDER_THAN = 24h
2017-05-10 18:40:18 +05:30
; Synchronize external user data (only LDAP user synchronization is supported)
[cron.sync_external_users]
2017-10-18 07:41:23 +05:30
; Synchronize external user data when starting server (default false)
2017-05-10 18:40:18 +05:30
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
2019-10-14 11:40:42 +05:30
; Update migrated repositories' issues and comments' posterid, it will always attempt synchronization when the instance starts.
[cron.update_migration_post_id]
; Interval as a duration between each synchronization. (default every 24h)
SCHEDULE = @every 24h
2014-09-17 23:52:51 +05:30
[git]
2019-07-07 12:56:56 +05:30
; The path of git executable. If empty, Gitea searches through the PATH environment.
PATH =
2016-08-07 22:19:47 +05:30
; Disables highlight of added and removed changes
DISABLE_DIFF_HIGHLIGHT = false
2018-05-11 07:13:46 +05:30
; Max number of lines allowed in a single file in diff view
2016-06-29 20:55:41 +05:30
MAX_GIT_DIFF_LINES = 1000
2018-05-11 07:13:46 +05:30
; Max number of allowed characters in a line in diff view
2017-06-01 06:40:11 +05:30
MAX_GIT_DIFF_LINE_CHARACTERS = 5000
2016-08-07 22:19:47 +05:30
; Max number of files shown in diff view
2016-06-29 20:41:00 +05:30
MAX_GIT_DIFF_FILES = 100
2015-12-12 07:53:19 +05:30
; Arguments for command 'git gc', e.g. "--aggressive --auto"
2018-12-05 04:10:42 +05:30
; see more on http://git-scm.com/docs/git-gc/
2016-06-29 20:41:00 +05:30
GC_ARGS =
2019-05-26 15:20:06 +05:30
; If use git wire protocol version 2 when git version >= 2.18, default is true, set to false when you always want git wire protocol version 1
EnableAutoGitWireProtocol = true
2014-09-17 23:52:51 +05:30
2016-03-01 05:59:49 +05:30
; Operation timeout in seconds
[git.timeout]
2019-02-10 04:14:24 +05:30
DEFAULT = 360
2016-03-01 05:59:49 +05:30
MIGRATE = 600
MIRROR = 300
CLONE = 300
PULL = 300
2016-08-10 05:54:32 +05:30
GC = 60
2016-03-01 05:59:49 +05:30
2016-08-10 12:17:16 +05:30
[mirror]
2017-04-08 20:57:26 +05:30
; 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 12:17:16 +05:30
2016-07-04 14:57:06 +05:30
[api]
2018-07-28 05:49:01 +05:30
; Enables Swagger. True or false; default is true.
ENABLE_SWAGGER = true
2018-05-11 07:13:46 +05:30
; Max number of items in a page
2016-07-04 14:57:06 +05:30
MAX_RESPONSE_ITEMS = 50
2019-01-25 00:29:27 +05:30
; Default paging number of api
DEFAULT_PAGING_NUM = 30
2019-02-06 23:49:26 +05:30
; Default and maximum number of items per page for git trees api
DEFAULT_GIT_TREES_PER_PAGE = 1000
2019-04-17 21:36:35 +05:30
; Default size of a blob returned by the blobs API (default is 10MiB)
DEFAULT_MAX_BLOB_SIZE = 10485760
2016-07-04 14:57:06 +05:30
2019-03-08 22:12:50 +05:30
[oauth2]
; Enables OAuth2 provider
2019-05-22 07:18:34 +05:30
ENABLE = true
2019-03-08 22:12:50 +05:30
; Lifetime of an OAuth2 access token in seconds
ACCESS_TOKEN_EXPIRATION_TIME=3600
; Lifetime of an OAuth2 access token in hours
REFRESH_TOKEN_EXPIRATION_TIME=730
2019-04-12 13:20:21 +05:30
; Check if refresh token got already used
INVALIDATE_REFRESH_TOKENS=false
2019-08-11 00:55:26 +05:30
; OAuth2 authentication secret for access and refresh tokens, change this to a unique string.
2019-03-08 22:12:50 +05:30
JWT_SECRET=Bk0yK7Y9g_p56v86KaHqjSbxvNvu3SbKoOdOt2ZcXvU
2014-07-26 09:54:27 +05:30
[i18n]
2018-05-24 20:59:33 +05:30
LANGS = en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,uk-UA,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR
NAMES = English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,français,Nederlands,latviešu,русский,Українська,日本語,español,português do Brasil,polski,български,italiano,suomi,Türkçe,čeština,српски,svenska,한국어
2015-03-23 19:49:19 +05:30
2015-08-05 12:54:26 +05:30
; Used for datetimepicker
[i18n.datelang]
en-US = en
zh-CN = zh
2018-05-24 23:37:02 +05:30
zh-HK = zh-HK
2016-05-11 21:30:47 +05:30
zh-TW = zh-TW
2015-08-05 12:54:26 +05:30
de-DE = de
fr-FR = fr
nl-NL = nl
lv-LV = lv
ru-RU = ru
2018-05-24 20:59:33 +05:30
uk-UA = uk
2015-08-05 12:54:26 +05:30
ja-JP = ja
es-ES = es
pt-BR = pt-BR
pl-PL = pl
bg-BG = bg
it-IT = it
2016-03-06 07:43:04 +05:30
fi-FI = fi
2016-05-11 21:30:47 +05:30
tr-TR = tr
cs-CZ = cs-CZ
2016-11-20 08:10:13 +05:30
sr-SP = sr
sv-SE = sv
2016-12-21 20:17:26 +05:30
ko-KR = ko
2015-08-05 12:54:26 +05:30
2018-05-24 23:37:02 +05:30
[U2F]
2019-02-07 21:17:40 +05:30
; NOTE: THE DEFAULT VALUES HERE WILL NEED TO BE CHANGED
2018-05-24 23:37:02 +05:30
; Two Factor authentication with security keys
; https://developers.yubico.com/U2F/App_ID.html
2019-02-07 21:17:40 +05:30
;APP_ID = http://localhost:3000/
; Comma seperated list of trusted facets
;TRUSTED_FACETS = http://localhost:3000/
2018-05-24 23:37:02 +05:30
2015-12-18 09:01:34 +05:30
; Extension mapping to highlight class
; e.g. .toml=ini
[highlight.mapping]
2015-03-23 19:49:19 +05:30
[other]
2015-08-10 06:14:43 +05:30
SHOW_FOOTER_BRANDING = false
2016-11-07 18:56:13 +05:30
; Show version information about Gitea and Go in the footer
2015-11-19 03:02:31 +05:30
SHOW_FOOTER_VERSION = true
2018-05-11 07:13:46 +05:30
; Show template execution time in the footer
2016-09-01 10:31:32 +05:30
SHOW_FOOTER_TEMPLATE_LOAD_TIME = true
2017-11-07 12:03:06 +05:30
2019-12-08 01:19:04 +05:30
[markup.sanitizer]
; The following keys can be used multiple times to define sanitation policy rules.
;ELEMENT = span
;ALLOW_ATTR = class
;REGEXP = ^(info|warning|error)$
2017-11-07 12:03:06 +05:30
[markup.asciidoc]
ENABLED = false
; List of file extensions that should be rendered by an external command
FILE_EXTENSIONS = .adoc,.asciidoc
; External command to render all matching extensions
RENDER_COMMAND = "asciidoc --out-file=- -"
2018-05-11 07:13:46 +05:30
; Don't pass the file on STDIN, pass the filename as argument instead.
2017-11-23 09:30:48 +05:30
IS_INPUT_FILE = false
2018-11-05 08:50:00 +05:30
[metrics]
; Enables metrics endpoint. True or false; default is false.
ENABLED = false
; If you want to add authorization, specify a token here
TOKEN =
2019-10-13 18:53:14 +05:30
[task]
; Task queue type, could be `channel` or `redis`.
QUEUE_TYPE = channel
; Task queue length, available only when `QUEUE_TYPE` is `channel`.
QUEUE_LENGTH = 1000
2019-10-22 02:50:47 +05:30
; Task queue connection string, available only when `QUEUE_TYPE` is `redis`.
2019-10-13 18:53:14 +05:30
; If there is a password of redis, use `addrs=127.0.0.1:6379 password=123 db=0`.
2019-10-15 12:44:58 +05:30
QUEUE_CONN_STR = "addrs=127.0.0.1:6379 db=0"
2019-11-16 14:00:06 +05:30
[migrations]
; Max attempts per http/https request on migrations.
MAX_ATTEMPTS = 3
; Backoff time per http/https request retry (seconds)
2019-11-22 00:02:02 +05:30
RETRY_BACKOFF = 3