2017-01-31 18:08:34 -05:00
# !!! NEVER EVER MODIFY THIS FILE !!!
# !!! PLEASE MAKE CHANGES ON CORRESPONDING CUSTOM CONFIG FILE !!!
# !!! IF YOU ARE PACKAGING PROVIDER, PLEASE MAKE OWN COPY OF IT !!!
2015-02-01 12:41:03 -05:00
2014-03-18 01:33:53 -04:00
; App name that shows on every page title
2017-02-15 22:29:31 -05:00
APP_NAME = Gogs
2017-01-31 18:08:34 -05:00
; The name of the system user that runs Gogs
2014-03-25 06:52:56 -04:00
RUN_USER = git
2017-01-31 18:08:34 -05:00
; Either "dev", "prod" or "test"
2014-03-18 01:33:53 -04:00
RUN_MODE = dev
2014-02-20 14:53:56 +08:00
2017-02-18 13:29:43 -05:00
[server]
PROTOCOL = http
DOMAIN = localhost
ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
HTTP_ADDR = 0.0.0.0
HTTP_PORT = 3000
; Permission for unix socket
UNIX_SOCKET_PERMISSION = 666
; Local (DMZ) URL for Gogs workers (such as SSH update) accessing web service.
; 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.
LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/
; Disable SSH feature when not available
DISABLE_SSH = false
; Whether use builtin SSH server or not.
START_SSH_SERVER = false
; Domain name to be exposed in SSH clone URL
SSH_DOMAIN = %(DOMAIN)s
; Port number to be exposed in SSH clone URL
SSH_PORT = 22
; Network interface builtin SSH server listens on
SSH_LISTEN_HOST = 0.0.0.0
; 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'.
SSH_ROOT_PATH =
2018-03-30 01:32:18 -04:00
; Indicate whether to rewrite authorized_keys at start, ignored when use builtin SSH server
REWRITE_AUTHORIZED_KEYS_AT_START = false
2017-02-18 13:29:43 -05:00
; Choose the ciphers to support for SSH connections
SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, arcfour256, arcfour128
; Directory to create temporary files when test publick key using ssh-keygen,
; default is system temporary directory.
SSH_KEY_TEST_PATH =
; Path to ssh-keygen, default is 'ssh-keygen' and let shell find out which one to call.
SSH_KEYGEN_PATH = ssh-keygen
; Indicate whether to check minimum key size with corresponding type
MINIMUM_KEY_SIZE_CHECK = false
; Disable CDN even in "prod" mode
OFFLINE_MODE = false
DISABLE_ROUTER_LOG = false
; Generate steps:
; $ ./gogs cert -ca=true -duration=8760h0m0s -host=myhost.example.com
;
; 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
CERT_FILE = custom/https/cert.pem
KEY_FILE = custom/https/key.pem
2017-05-20 13:31:25 +01:00
; Allowed TLS version values: SSL30, TLS10, TLS11, TLS12
TLS_MIN_VERSION = TLS10
2017-02-18 13:29:43 -05:00
; Upper level of template and static file path
; default is the path where Gogs is executed
STATIC_ROOT_PATH =
; Default path for App data
APP_DATA_PATH = data
; Application level GZIP support
ENABLE_GZIP = false
; Landing page for non-logged users, can be "home" or "explore"
LANDING_PAGE = home
2014-02-20 14:53:56 +08:00
[repository]
2017-01-31 18:08:34 -05:00
; Root path for storing repositories's data, default is "~/<username>/gogs-repositories"
2014-08-30 15:12:53 +02:00
ROOT =
2017-01-31 18:08:34 -05:00
; The script type server supports, sometimes could be "sh"
2014-04-19 06:00:08 -04:00
SCRIPT_TYPE = bash
2017-01-31 18:08:34 -05:00
; Default ANSI charset for an unrecognized charset
2016-06-29 12:11:00 -03:00
ANSI_CHARSET =
2015-10-25 04:26:26 -04:00
; Force every new repository to be private
FORCE_PRIVATE = false
2015-12-11 10:13:19 -05:00
; Global maximum creation limit of repository per user, -1 means no limit
MAX_CREATION_LIMIT = -1
2016-08-30 16:18:33 -07: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
2017-01-31 18:08:34 -05:00
; Preferred Licenses to place at the top of the list
2016-08-28 00:06:22 -07:00
; Name must match file name in conf/license or custom/conf/license
PREFERRED_LICENSES = Apache License 2.0,MIT License
2016-12-22 07:42:04 +01:00
; Disable ability to interact with repositories by HTTP protocol
DISABLE_HTTP_GIT = false
2017-01-26 17:43:37 -05:00
; Enable ability to migrate repository by local path
ENABLE_LOCAL_PATH_MIGRATION = false
2017-02-15 03:59:53 -05:00
; Concurrency is used to retrieve commits information. This variable define
; the maximum number of tasks that can be run at the same time. Usually, the
; value depend of how many CPUs (cores) you have. If the value is set to zero
2018-09-28 15:37:34 -04:00
; or under, Gogs will automatically detect the number of CPUs your system have
2017-02-15 03:59:53 -05:00
COMMITS_FETCH_CONCURRENCY = 0
2017-03-17 19:42:21 -04:00
; Enable render mode for raw file
ENABLE_RAW_FILE_RENDER_MODE = false
2014-02-12 14:54:09 -05:00
2016-08-12 02:29:29 -07:00
[repository.editor]
2017-01-31 18:08:34 -05:00
; List of file extensions that should have line wraps in the CodeMirror editor.
; Separate extensions with a comma. To line wrap files without extension, just put a comma
2016-08-11 05:48:08 -07:00
LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd,
2017-01-31 18:08:34 -05:00
; Valid file modes that have a preview API associated with them, such as api/v1/markdown.
2016-08-11 05:48:08 -07:00
; Separate values by commas. Preview tab in edit mode won't show if the file extension doesn't match
2016-08-12 02:29:29 -07:00
PREVIEWABLE_FILE_MODES = markdown
2016-08-11 05:48:08 -07:00
2016-08-12 02:29:29 -07:00
[repository.upload]
2017-01-31 18:08:34 -05:00
; Enable repository file uploads.
2016-08-12 02:29:29 -07:00
ENABLED = true
2017-01-31 18:08:34 -05:00
; Path to temporarily store uploads (default path gets cleaned by Gogs in every start)
2016-08-11 05:48:08 -07:00
TEMP_PATH = data/tmp/uploads
2017-01-31 18:08:34 -05:00
; File types that are allowed to be uploaded, e.g. image/jpeg|image/png. Leave empty means allow any file type
2016-08-11 05:48:08 -07:00
ALLOWED_TYPES =
2017-01-31 18:08:34 -05:00
; Maximum size of each file in MB
2016-08-30 05:07:50 -07:00
FILE_MAX_SIZE = 3
2017-01-31 18:08:34 -05:00
; Maximum number of files per upload
2016-08-30 05:07:50 -07:00
MAX_FILES = 5
2016-08-11 05:48:08 -07:00
2017-03-13 04:32:20 -04:00
; Attachment settings for releases
[release.attachment]
; Whether attachments are enabled. Defaults to `true`
ENABLED = true
; Path for attachments. Defaults to `data/attachments`
PATH = data/attachments
; One or more allowed types, e.g. image/jpeg|image/png
ALLOWED_TYPES = */*
; Max size of each file. Defaults to 32MB
MAX_SIZE = 32
; Max number of files per upload. Defaults to 10
MAX_FILES = 10
2015-09-01 08:32:02 -04:00
[markdown]
; Enable hard line break extension
ENABLE_HARD_LINE_BREAK = false
2016-01-27 02:05:53 +01:00
; List of custom URL-Schemes that are allowed as links when rendering Markdown
; for example git,magnet
CUSTOM_URL_SCHEMES =
2016-08-11 05:48:08 -07: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 02:29:29 -07:00
FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd
2015-09-01 08:32:02 -04:00
2017-03-10 23:30:40 -05:00
[smartypants]
ENABLED = false
FRACTIONS = true
DASHES = true
LATEX_DASHES = true
ANGLED_QUOTES = true
2017-01-28 19:59:17 -05:00
[http]
; Value for Access-Control-Allow-Origin header, default is not to present
2017-05-20 13:31:25 +01:00
ACCESS_CONTROL_ALLOW_ORIGIN =
2017-01-28 19:59:17 -05:00
2016-02-27 20:48:39 -05: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-18 17:48:02 -05:00
[database]
2017-02-09 09:31:38 -05:00
; Either "mysql", "postgres" or "sqlite3", you can connect to TiDB with MySQL protocol
2014-02-18 17:48:02 -05:00
DB_TYPE = mysql
2014-03-29 13:40:22 +08:00
HOST = 127.0.0.1:3306
2014-02-18 17:48:02 -05:00
NAME = gogs
USER = root
2014-03-10 16:55:53 +08:00
PASSWD =
2014-03-18 01:33:53 -04:00
; For "postgres" only, either "disable", "require" or "verify-full"
2014-03-17 14:03:58 -04:00
SSL_MODE = disable
2016-02-07 11:51:53 -05:00
; For "sqlite3" and "tidb", use absolute path when you start as service
2014-03-21 01:09:22 -04:00
PATH = data/gogs.db
[admin]
2017-02-10 16:41:51 -05:00
; Disable regular (non-admin) users to create organizations
DISABLE_REGULAR_ORG_CREATION = false
2014-03-06 11:10:35 -05:00
[security]
2014-03-31 10:12:36 -04:00
INSTALL_LOCK = false
2014-03-18 01:33:53 -04:00
; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
2014-03-19 07:21:23 -04:00
SECRET_KEY = !#@FDEWREWR&*(
2014-03-22 16:40:09 -04:00
; Auto-login remember days
LOGIN_REMEMBER_DAYS = 7
COOKIE_USERNAME = gogs_awesome
COOKIE_REMEMBER_NAME = gogs_incredible
2017-02-14 03:52:20 -05:00
COOKIE_SECURE = false
2014-06-24 13:55:47 -04:00
; Reverse proxy authentication header name of user name
REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
2017-03-16 22:42:17 -04:00
; Enable to set cookie to indicate user login status
ENABLE_LOGIN_STATUS_COOKIE = false
LOGIN_STATUS_COOKIE_NAME = login_status
2014-03-19 07:21:23 -04:00
[service]
ACTIVE_CODE_LIVE_MINUTES = 180
RESET_PASSWD_CODE_LIVE_MINUTES = 180
; User need to confirm e-mail for registration
2014-03-19 08:27:27 -04:00
REGISTER_EMAIL_CONFIRM = false
2014-03-21 01:09:22 -04:00
; Does not allow register and admin create account only
2014-04-21 18:03:04 -04:00
DISABLE_REGISTRATION = false
2014-03-21 01:59:15 -04:00
; User must sign in to view anything.
REQUIRE_SIGNIN_VIEW = false
2014-03-23 19:09:11 -04:00
; Mail notification
ENABLE_NOTIFY_MAIL = false
2014-06-21 00:51:41 -04:00
; More detail: https://github.com/gogits/gogs/issues/165
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
2015-03-12 12:25:28 -05:00
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
2015-09-13 11:07:21 -04:00
; Enable captcha validation for registration
ENABLE_CAPTCHA = true
2014-03-18 01:33:53 -04:00
2014-06-08 04:45:34 -04:00
[webhook]
2017-09-22 02:32:48 +08:00
; Types are enabled for users to use, can be "gogs", "slack", "discord", "dingtalk"
TYPES = gogs, slack, discord, dingtalk
2016-08-30 16:18:33 -07:00
; Hook task queue length, increase if webhook shooting starts hanging
2015-07-25 21:32:04 +08:00
QUEUE_LENGTH = 1000
2014-06-08 04:45:34 -04:00
; Deliver timeout in seconds
2017-05-30 05:27:02 +02:00
DELIVER_TIMEOUT = 15
2015-02-10 21:06:59 -05:00
; Allow insecure certification
2015-02-11 12:04:01 -05:00
SKIP_TLS_VERIFY = false
2015-08-27 23:06:14 +08:00
; Number of history information in each page
PAGING_NUM = 10
2014-06-08 04:45:34 -04:00
2014-03-18 01:33:53 -04:00
[mailer]
2014-03-18 04:19:10 -04:00
ENABLED = false
2014-03-19 21:05:48 -04:00
; Buffer length of channel, keep it as it is if you don't know what it is.
2015-09-16 23:08:46 -04:00
SEND_BUFFER_LEN = 100
2018-03-30 03:52:23 -04:00
; Prefix prepended to the subject line
SUBJECT_PREFIX = `[%(APP_NAME)s] `
2014-03-18 01:33:53 -04:00
; Mail server
2014-03-19 08:27:27 -04:00
; Gmail: smtp.gmail.com:587
2016-06-30 04:04:15 +08:00
; QQ: smtp.qq.com:465
2014-12-18 13:34:30 +02: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-29 12:11:00 -03:00
HOST =
2015-07-03 14:08:18 +08:00
; Disable HELO operation when hostname are different.
2016-06-29 12:11:00 -03:00
DISABLE_HELO =
2015-07-03 14:08:18 +08:00
; Custom hostname for HELO operation, default is from system.
2016-06-29 12:11:00 -03:00
HELO_HOSTNAME =
2014-12-18 13:34:30 +02:00
; Do not verify the certificate of the server. Only use this for self-signed certificates
2016-06-29 12:11:00 -03:00
SKIP_VERIFY =
2015-02-13 10:33:55 +03:00
; Use client certificate
2015-02-13 11:06:12 +03:00
USE_CERTIFICATE = false
CERT_FILE = custom/mailer/cert.pem
KEY_FILE = custom/mailer/key.pem
2016-06-29 12:11:00 -03:00
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
2014-08-30 15:12:53 +02:00
FROM =
2014-03-18 01:33:53 -04:00
; Mailer user name and password
2014-08-30 15:12:53 +02:00
USER =
PASSWD =
2017-02-23 12:16:10 -05:00
; Use text/plain as format of content
USE_PLAIN_TEXT = false
2018-12-25 17:08:00 +02:00
; If sending html emails, then also attach a plaintext alternative to the MIME message, to support older mail clients and make spam filters happier.
ADD_PLAIN_TEXT_ALT = false
2014-03-19 03:24:17 -04:00
2014-03-21 21:06:47 +08:00
[cache]
2014-03-21 10:09:57 -04:00
; Either "memory", "redis", or "memcache", default is "memory"
2014-03-21 21:06:47 +08:00
ADAPTER = memory
2014-03-21 10:09:57 -04:00
; For "memory" only, GC interval in seconds, default is 60
INTERVAL = 60
; For "redis" and "memcache", connection host address
2015-01-17 15:17:53 +08:00
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 00:24:27 -04:00
; memcache: `127.0.0.1:11211`
2014-03-21 10:09:57 -04:00
HOST =
2014-03-21 21:06:47 +08:00
2014-03-22 20:49:53 +08:00
[session]
2016-07-02 18:23:15 +08:00
; Either "memory", "file", or "redis", default is "memory"
2014-12-20 22:51:16 -05:00
PROVIDER = memory
2014-03-22 09:21:57 -04:00
; Provider config options
2014-03-22 20:49:53 +08:00
; memory: not have any config yet
2014-07-26 00:24:27 -04:00
; file: session file path, e.g. `data/sessions`
2015-01-17 15:17:53 +08:00
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 00:24:27 -04:00
; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
2014-03-22 20:49:53 +08:00
PROVIDER_CONFIG = data/sessions
2014-03-22 09:21:57 -04:00
; Session cookie name
2018-10-24 10:05:35 -04:00
COOKIE_NAME = i_like_gogs
2014-03-22 09:21:57 -04:00
; If you use session in https only, default is false
2014-03-22 20:49:53 +08:00
COOKIE_SECURE = false
2014-03-22 09:21:57 -04:00
; Enable set cookie, default is true
2014-03-22 20:49:53 +08:00
ENABLE_SET_COOKIE = true
2017-03-31 23:55:42 -04:00
; Session GC time interval, default is 3600
GC_INTERVAL_TIME = 3600
2014-03-22 09:21:57 -04:00
; Session life time, default is 86400
2014-03-22 20:49:53 +08:00
SESSION_LIFE_TIME = 86400
2017-02-22 21:46:43 -05:00
; Cookie name for CSRF
CSRF_COOKIE_NAME = _csrf
2014-03-22 20:49:53 +08:00
2014-03-22 06:42:19 -04:00
[picture]
2017-02-09 09:31:38 -05:00
; Path to store user uploaded avatars
2014-11-21 10:58:08 -05:00
AVATAR_UPLOAD_PATH = data/avatars
2018-06-17 15:21:52 +03:00
; Path to store repository uploaded avatars
REPOSITORY_AVATAR_UPLOAD_PATH = data/repo-avatars
2014-11-16 20:27:04 -05:00
; Chinese users can choose "duoshuo"
2015-08-10 08:44:43 +08:00
; or a custom avatar source, like: http://cn.gravatar.com/avatar/
2014-11-16 20:27:04 -05:00
GRAVATAR_SOURCE = gravatar
2016-08-07 11:01:47 -07:00
; This value will be forced to be true in offline mode.
2014-05-01 21:30:04 -04:00
DISABLE_GRAVATAR = false
2016-08-07 19:27:38 +02:00
; Federated avatar lookup uses DNS to discover avatar associated
2016-08-23 18:50:33 +02:00
; with emails, see https://www.libravatar.org
2016-08-07 11:01:47 -07:00
; This value will be forced to be false in offline mode or Gravatar is disbaled.
2018-03-29 05:48:53 -04:00
ENABLE_FEDERATED_AVATAR = false
2014-03-22 06:42:19 -04:00
2017-03-13 04:32:20 -04:00
; Attachment settings for issues
2014-07-23 21:15:47 +02:00
[attachment]
2014-07-24 15:51:40 +02:00
; Whether attachments are enabled. Defaults to `true`
2017-06-03 17:02:55 +10:00
ENABLED = true
2014-07-26 00:24:27 -04:00
; Path for attachments. Defaults to `data/attachments`
PATH = data/attachments
2014-07-23 21:15:47 +02:00
; One or more allowed types, e.g. image/jpeg|image/png
2014-07-26 00:24:27 -04:00
ALLOWED_TYPES = image/jpeg|image/png
2017-03-13 04:32:20 -04:00
; Max size of each file. Defaults to 4MB
2015-09-02 16:18:09 -04:00
MAX_SIZE = 4
2017-03-13 04:32:20 -04:00
; Max number of files per upload. Defaults to 5
2015-08-11 23:24:40 +08:00
MAX_FILES = 5
2014-07-23 21:15:47 +02:00
2014-07-24 22:31:59 +02: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 15:12:53 +02:00
FORMAT =
2014-07-24 22:31:59 +02:00
2017-02-09 23:53:57 -05:00
; General settings of loggers
2014-03-19 03:24:17 -04:00
[log]
2014-05-28 01:53:06 -04:00
ROOT_PATH =
2017-02-09 19:29:59 -05:00
; Can be "console" and "file", default is "console"
2014-05-11 14:37:12 -04:00
; Use comma to separate multiple modes, e.g. "console, file"
2014-03-19 03:24:17 -04:00
MODE = console
; Buffer length of channel, keep it as it is if you don't know what it is.
2017-02-09 19:29:59 -05:00
BUFFER_LEN = 100
; Either "Trace", "Info", "Warn", "Error", "Fatal", default is "Trace"
2014-03-19 03:24:17 -04:00
LEVEL = Trace
2014-03-19 04:08:25 -04:00
; For "console" mode only
2014-03-19 03:24:17 -04:00
[log.console]
2018-11-26 06:44:06 -05:00
; Comment out to inherit
; LEVEL =
2014-03-19 03:24:17 -04:00
; For "file" mode only
[log.file]
2018-11-26 06:44:06 -05:00
; Comment out to inherit
; LEVEL =
2017-02-09 19:29:59 -05:00
; This enables automated log rotate (switch of following options)
2014-03-19 04:08:25 -04:00
LOG_ROTATE = true
2017-02-09 19:29:59 -05:00
; Segment log daily
DAILY_ROTATE = true
2014-03-19 04:08:25 -04:00
; Max size shift of single file, default is 28 means 1 << 28, 256MB
MAX_SIZE_SHIFT = 28
2017-02-09 19:29:59 -05:00
; Max line number of single file
MAX_LINES = 1000000
; Expired days of log file (delete after max days)
2014-03-19 03:24:17 -04:00
MAX_DAYS = 7
2017-02-09 23:53:57 -05:00
; For "slack" mode only
[log.slack]
2018-11-26 06:44:06 -05:00
; Comment out to inherit
; LEVEL =
2017-02-09 23:53:57 -05:00
; Webhook URL
2017-05-20 13:31:25 +01:00
URL =
2017-02-09 23:53:57 -05:00
2018-04-25 22:13:01 -04:00
[log.discord]
2018-11-26 06:44:06 -05:00
; Comment out to inherit
; LEVEL =
2018-04-25 22:13:01 -04:00
; Webhook URL
URL =
; Username displayed in webhook
USERNAME = %(APP_NAME)s
2017-03-23 18:34:25 -04:00
[log.xorm]
; Enable file rotation
ROTATE = true
; Rotate every day
ROTATE_DAILY = true
; Rotate once file size excesses x MB
MAX_SIZE = 100
; Maximum days to keep logger files
MAX_DAYS = 3
2015-08-18 02:19:29 +08:00
[cron]
; Enable running cron tasks periodically.
ENABLED = true
; Run cron tasks when Gogs starts.
RUN_AT_START = false
; Update mirrors
[cron.update_mirrors]
2016-07-23 20:20:09 +08:00
SCHEDULE = @every 10m
2015-08-18 02:19:29 +08:00
; Repository health check
[cron.repo_health_check]
SCHEDULE = @every 24h
2015-12-09 11:38:12 -05:00
TIMEOUT = 60s
2015-12-11 21:23:19 -05:00
; Arguments for command 'git fsck', e.g. "--unreachable --tags"
2015-08-18 02:19:29 +08:00
; see more on http://git-scm.com/docs/git-fsck/1.7.5
2016-06-29 12:11:00 -03:00
ARGS =
2015-08-18 02:19:29 +08:00
; Check repository statistics
[cron.check_repo_stats]
RUN_AT_START = true
SCHEDULE = @every 24h
2017-02-18 19:35:59 -05:00
; Cleanup repository archives
[cron.repo_archive_cleanup]
RUN_AT_START = false
SCHEDULE = @every 24h
; Time duration to check if archive should be cleaned
OLDER_THAN = 24h
2014-09-17 14:22:51 -04:00
[git]
2016-08-07 13:49:47 -03: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-29 23:25:41 +08:00
MAX_GIT_DIFF_LINES = 1000
2016-08-07 13:49:47 -03:00
; Max number of characters of a line allowed in diff view
2016-06-29 12:11:00 -03:00
MAX_GIT_DIFF_LINE_CHARACTERS = 500
2016-08-07 13:49:47 -03:00
; Max number of files shown in diff view
2016-06-29 12:11:00 -03:00
MAX_GIT_DIFF_FILES = 100
2015-12-11 21:23:19 -05:00
; Arguments for command 'git gc', e.g. "--aggressive --auto"
2014-11-30 02:26:29 -05:00
; see more on http://git-scm.com/docs/git-gc/1.7.5
2016-06-29 12:11:00 -03:00
GC_ARGS =
2014-09-17 14:22:51 -04:00
2016-02-29 19:29:49 -05:00
; Operation timeout in seconds
[git.timeout]
MIGRATE = 600
MIRROR = 300
CLONE = 300
PULL = 300
2016-08-09 17:24:32 -07:00
GC = 60
2016-02-29 19:29:49 -05:00
2016-08-10 08:47:16 +02:00
[mirror]
; Default interval in hours between each check
2016-08-30 16:18:33 -07:00
DEFAULT_INTERVAL = 8
2016-08-10 08:47:16 +02:00
2016-07-04 17:27:06 +08:00
[api]
; Max number of items will response in a page
MAX_RESPONSE_ITEMS = 50
2017-02-10 16:51:09 -05:00
[ui]
; Number of repositories that are showed in one explore page
EXPLORE_PAGING_NUM = 20
; Number of issues that are showed in one page
ISSUE_PAGING_NUM = 10
; Number of maximum commits showed in one activity feed
FEED_MAX_COMMIT_NUM = 5
; 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
THEME_COLOR_META_TAG = `#ff5343`
; Max size in bytes of files to be displayed (default is 8MB)
MAX_DISPLAY_FILE_SIZE = 8388608
[ui.admin]
; Number of users that are showed in one page
USER_PAGING_NUM = 50
; Number of repos that are showed in one page
REPO_PAGING_NUM = 50
; Number of notices that are showed in one page
NOTICE_PAGING_NUM = 25
; Number of organization that are showed in one page
ORG_PAGING_NUM = 50
[ui.user]
; Number of repos that are showed in one page
REPO_PAGING_NUM = 15
2017-03-16 20:25:28 -04:00
; Number of news feeds that are showed in one page
NEWS_FEED_PAGING_NUM = 20
2017-03-16 22:28:32 -04:00
; Number of commits that are showed in one page
COMMITS_PAGING_NUM = 30
2017-02-10 16:51:09 -05:00
2018-09-14 22:29:43 -04:00
[prometheus]
ENABLED = true
ENABLE_BASIC_AUTH = false
BASIC_AUTH_USERNAME =
BASIC_AUTH_PASSWORD =
2014-07-26 00:24:27 -04:00
[i18n]
2019-01-30 21:58:07 -05: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,gl-ES,uk-UA,en-GB,hu-HU,sk-SK,id-ID,fa-IR,vi-VN,pt-PT
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
2015-03-23 10:19:19 -04:00
2015-08-05 15:24:26 +08:00
; Used for datetimepicker
[i18n.datelang]
en-US = en
zh-CN = zh
zh-HK = zh-TW
2016-05-11 12:00:47 -04:00
zh-TW = zh-TW
2015-08-05 15:24:26 +08: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-05 21:13:04 -05:00
fi-FI = fi
2016-05-11 12:00:47 -04:00
tr-TR = tr
cs-CZ = cs-CZ
2016-11-19 21:40:13 -05:00
sr-SP = sr
sv-SE = sv
2016-12-20 21:59:59 -05:00
ko-KR = ko
2016-12-23 21:06:15 -05:00
gl-ES = gl
2017-02-18 15:00:11 -05:00
uk-UA = uk
2018-03-05 04:37:44 -05:00
en-GB = en-GB
hu-HU = hu
sk-SK = sk
id-ID = id
fa-IR = fa
2018-04-16 17:48:23 -04:00
vi-VN = vi
2019-01-30 21:58:07 -05:00
pt-PT = pt
2015-08-05 15:24:26 +08:00
2015-12-17 22:31:34 -05:00
; Extension mapping to highlight class
; e.g. .toml=ini
[highlight.mapping]
2015-03-23 10:19:19 -04:00
[other]
2015-08-10 08:44:43 +08:00
SHOW_FOOTER_BRANDING = false
2016-09-01 07:01:32 +02:00
; Show version information about Gogs and Go in the footer
2015-11-18 22:32:31 +01:00
SHOW_FOOTER_VERSION = true
2016-09-01 07:01:32 +02:00
; Show time of template execution in the footer
SHOW_FOOTER_TEMPLATE_LOAD_TIME = true