bench-forgejo/conf/app.ini

376 lines
11 KiB
INI
Raw Normal View History

# NEVER EVER MODIFY THIS FILE
# PLEASE MAKE CHANGES ON CORRESPONDING CUSTOM CONFIG FILE
2014-03-18 11:03:53 +05:30
; App name that shows on every page title
2014-03-04 05:33:08 +05:30
APP_NAME = Gogs: Go Git Service
; 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]
ROOT =
2014-04-19 15:30:08 +05:30
SCRIPT_TYPE = bash
2015-10-25 13:56:26 +05:30
; Default ANSI charset
ANSI_CHARSET =
; Force every new repository to be private
FORCE_PRIVATE = false
2015-12-11 20:43:19 +05:30
; Global maximum creation limit of repository per user, -1 means no limit
MAX_CREATION_LIMIT = -1
2015-10-25 13:56:26 +05:30
; Patch test queue length, make it as large as possible
2015-10-25 01:05:26 +05:30
PULL_REQUEST_QUEUE_LENGTH = 10000
2014-02-13 01:24:09 +05:30
2015-07-25 00:22:25 +05:30
[ui]
2015-09-01 16:34:35 +05:30
; Number of repositories that are showed in one explore page
EXPLORE_PAGING_NUM = 20
2015-07-25 00:22:25 +05:30
; 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`
2015-07-25 00:22:25 +05:30
2015-09-12 06:12:26 +05:30
[ui.admin]
; Number of users that are showed in one page
2015-09-12 06:12:26 +05:30
USER_PAGING_NUM = 50
2015-09-26 04:08:43 +05:30
; 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
2015-09-25 23:24:52 +05:30
; Number of organization that are showed in one page
ORG_PAGING_NUM = 50
2015-09-12 06:12:26 +05:30
[markdown]
; Enable hard line break extension
ENABLE_HARD_LINE_BREAK = false
2016-01-27 06:35:53 +05:30
; List of custom URL-Schemes that are allowed as links when rendering Markdown
; for example git,magnet
CUSTOM_URL_SCHEMES =
2014-02-13 01:24:09 +05:30
[server]
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/
HTTP_ADDR =
2014-05-02 04:23:41 +05:30
HTTP_PORT = 3000
; 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 = http://localhost:%(HTTP_PORT)s/
2015-02-07 21:16:57 +05:30
; 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 clone URL
SSH_DOMAIN = %(DOMAIN)s
; Port number to be exposed in clone URL
2014-05-11 20:48:10 +05:30
SSH_PORT = 22
; 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'.
2015-12-20 08:13:32 +05:30
SSH_ROOT_PATH =
; 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
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:
; $ ./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
2014-04-21 06:22:00 +05:30
CERT_FILE = custom/https/cert.pem
KEY_FILE = custom/https/key.pem
2014-05-26 05:41:25 +05:30
; 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
2014-07-26 09:54:27 +05:30
; Application level GZIP support
2014-10-14 03:34:07 +05:30
ENABLE_GZIP = false
2014-11-25 05:17:59 +05:30
; Landing page for non-logged users, can be "home" or "explore"
LANDING_PAGE = home
2014-02-19 04:18:02 +05:30
; 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 04:18:02 +05:30
[database]
2014-04-20 07:43:22 +05:30
; Either "mysql", "postgres" 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
2014-02-19 04:18:02 +05:30
NAME = gogs
USER = root
2014-03-10 14:25:53 +05:30
PASSWD =
2014-03-18 11:03:53 +05:30
; For "postgres" only, either "disable", "require" or "verify-full"
SSL_MODE = disable
2016-02-07 22:21:53 +05:30
; For "sqlite3" and "tidb", use absolute path when you start as service
2014-03-21 10:39:22 +05:30
PATH = data/gogs.db
[admin]
2014-03-06 21:40:35 +05:30
[security]
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&*(
2014-03-23 02:10:09 +05:30
; Auto-login remember days
LOGIN_REMEMBER_DAYS = 7
COOKIE_USERNAME = gogs_awesome
COOKIE_REMEMBER_NAME = gogs_incredible
2014-06-24 23:25:47 +05:30
; Reverse proxy authentication header name of user name
REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
2014-03-19 16:51:23 +05:30
[service]
ACTIVE_CODE_LIVE_MINUTES = 180
RESET_PASSWD_CODE_LIVE_MINUTES = 180
; User need to confirm e-mail for registration
2014-03-19 17:57:27 +05:30
REGISTER_EMAIL_CONFIRM = false
2014-03-21 10:39:22 +05:30
; Does not allow register and admin create account only
DISABLE_REGISTRATION = false
; 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
2014-06-21 10:21:41 +05:30
; More detail: https://github.com/gogits/gogs/issues/165
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
2015-03-12 22:55:28 +05:30
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
; Enable captcha validation for registration
ENABLE_CAPTCHA = true
2014-03-18 11:03:53 +05:30
2014-06-08 14:15:34 +05:30
[webhook]
2015-07-25 19:02:04 +05:30
; Hook task queue length
QUEUE_LENGTH = 1000
2014-06-08 14:15:34 +05:30
; Deliver timeout in seconds
DELIVER_TIMEOUT = 5
; 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
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
2014-03-18 11:03:53 +05:30
; Name displayed in mail title
2014-03-19 12:54:17 +05:30
SUBJECT = %(APP_NAME)s
2014-03-18 11:03:53 +05:30
; Mail server
2014-03-19 17:57:27 +05:30
; Gmail: smtp.gmail.com:587
2014-04-19 15:30:08 +05:30
; QQ: smtp.qq.com:25
; 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.
2015-07-03 12:09:36 +05:30
HOST =
2015-07-03 11:38:18 +05:30
; Disable HELO operation when hostname are different.
DISABLE_HELO =
; Custom hostname for HELO operation, default is from system.
HELO_HOSTNAME =
; Do not verify the certificate of the server. Only use this for self-signed certificates
SKIP_VERIFY =
; Use client certificate
USE_CERTIFICATE = false
CERT_FILE = custom/mailer/cert.pem
KEY_FILE = custom/mailer/key.pem
2015-07-28 20:06:41 +05:30
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
FROM =
2014-03-18 11:03:53 +05:30
; Mailer user name and password
USER =
PASSWD =
; Use text/html as alternative format of content
ENABLE_HTML_ALTERNATIVE = false
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 =
2014-03-21 18:36:47 +05:30
2014-03-22 18:19:53 +05:30
[session]
; Either "memory", "file", "redis" or "mysql", default is "memory"
2014-12-21 09:21:16 +05:30
PROVIDER = memory
2014-03-22 18:51:57 +05:30
; Provider config options
2014-03-22 18:19:53 +05:30
; memory: not 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
2014-03-22 18:19:53 +05:30
COOKIE_NAME = i_like_gogits
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
2014-03-22 18:51:57 +05:30
; Session GC time interval, default is 86400
2014-03-22 18:19:53 +05:30
GC_INTERVAL_TIME = 86400
2014-03-22 18:51:57 +05:30
; Session life time, default is 86400
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
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
2014-05-02 07:00:04 +05:30
DISABLE_GRAVATAR = 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`
2014-07-26 09:54:27 +05:30
ENABLE = true
; 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
2014-07-26 09:54:27 +05:30
ALLOWED_TYPES = image/jpeg|image/png
2014-07-24 18:53:56 +05:30
; Max size of each file. Defaults to 32MB
2015-09-03 01:48:09 +05:30
MAX_SIZE = 4
2014-07-24 18:53:56 +05:30
; Max number of files per upload. Defaults to 10
2015-08-11 20:54:40 +05:30
MAX_FILES = 5
2014-07-24 00:45:47 +05:30
[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
FORMAT =
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"
; Use comma to separate multiple modes, e.g. "console, file"
2014-03-19 12:54:17 +05:30
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 13:38:25 +05:30
; For "console" mode only
2014-03-19 12:54:17 +05:30
[log.console]
LEVEL =
2014-03-19 12:54:17 +05:30
; For "file" mode only
[log.file]
LEVEL =
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
2014-03-19 12:54:17 +05:30
; Max line number of single file, default is 1000000
MAX_LINES = 1000000
2014-03-19 13:38:25 +05:30
; Max size shift of single file, default is 28 means 1 << 28, 256MB
MAX_SIZE_SHIFT = 28
2014-03-19 12:54:17 +05:30
; 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]
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
ADDR =
2014-03-19 12:54:17 +05:30
; For "smtp" mode only
[log.smtp]
LEVEL =
; 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
HOST =
2014-03-19 12:54:17 +05:30
; Mailer user name and password
USER =
2014-03-19 12:54:17 +05:30
PASSWD =
2014-03-19 13:38:25 +05:30
; Receivers, can be one or more, e.g. ["1@example.com","2@example.com"]
RECEIVERS =
2014-03-23 03:29:22 +05:30
; For "database" mode only
[log.database]
LEVEL =
2014-06-20 09:55:23 +05:30
; Either "mysql" or "postgres"
DRIVER =
2014-06-20 09:55:23 +05:30
; Based on xorm, e.g.: root:root@localhost/gogs?charset=utf8
CONN =
2014-07-26 09:54:27 +05:30
2015-08-17 23:49:29 +05:30
[cron]
; Enable running cron tasks periodically.
ENABLED = true
; Run cron tasks when Gogs starts.
RUN_AT_START = false
; Update mirrors
[cron.update_mirrors]
SCHEDULE = @every 1h
; 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"
2015-08-17 23:49:29 +05:30
; see more on http://git-scm.com/docs/git-fsck/1.7.5
ARGS =
; Check repository statistics
[cron.check_repo_stats]
RUN_AT_START = true
SCHEDULE = @every 24h
2014-09-17 23:52:51 +05:30
[git]
2015-01-02 17:44:43 +05:30
MAX_GIT_DIFF_LINES = 10000
2015-12-12 07:53:19 +05:30
; Arguments for command 'git gc', e.g. "--aggressive --auto"
2014-11-30 12:56:29 +05:30
; see more on http://git-scm.com/docs/git-gc/1.7.5
GC_ARGS =
2014-09-17 23:52:51 +05:30
; Operation timeout in seconds
[git.timeout]
MIGRATE = 600
MIRROR = 300
CLONE = 300
PULL = 300
2014-07-26 09:54:27 +05:30
[i18n]
2016-05-11 21:30:47 +05:30
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
NAMES = English,简体中文,繁體中文(香港),繁體中文(台湾),Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português do Brasil,Polski,български,Italiano,Suomalainen,Türk,čeština
2015-08-05 12:54:26 +05:30
; Used for datetimepicker
[i18n.datelang]
en-US = en
zh-CN = zh
zh-HK = zh-TW
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
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
2015-08-05 12:54:26 +05:30
; Extension mapping to highlight class
; e.g. .toml=ini
[highlight.mapping]
[other]
2015-08-10 06:14:43 +05:30
SHOW_FOOTER_BRANDING = false
; Show version information about gogs and go in the footer
SHOW_FOOTER_VERSION = true