gitea/conf/app.ini

322 lines
9.0 KiB
INI
Raw Normal View History

# NEVER EVER MODIFY THIS FILE
# PLEASE MAKE CHANGES ON CORRESPONDING CUSTOM CONFIG FILE
2014-03-18 06:33:53 +01:00
; App name that shows on every page title
2014-03-04 01:03:08 +01:00
APP_NAME = Gogs: Go Git Service
; Change it if you run locally
2014-03-25 11:52:56 +01:00
RUN_USER = git
2014-03-19 08:24:17 +01:00
; Either "dev", "prod" or "test", default is "dev"
2014-03-18 06:33:53 +01:00
RUN_MODE = dev
2014-02-20 07:53:56 +01:00
[repository]
ROOT =
2014-04-19 12:00:08 +02:00
SCRIPT_TYPE = bash
2014-02-12 20:54:09 +01:00
2015-07-24 20:52:25 +02:00
[ui]
; Number of issues that are showed in one page
ISSUE_PAGING_NUM = 10
2014-02-12 20:54:09 +01:00
[server]
2014-04-05 09:17:57 +02:00
PROTOCOL = http
2014-03-19 12:21:23 +01:00
DOMAIN = localhost
2014-05-02 00:53:41 +02:00
ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
HTTP_ADDR =
2014-05-02 00:53:41 +02:00
HTTP_PORT = 3000
2015-02-07 16:46:57 +01:00
; Disable SSH feature when not available
DISABLE_SSH = false
2014-05-11 17:18:10 +02:00
SSH_PORT = 22
2014-04-27 09:05:13 +02:00
; Disable CDN even in "prod" mode
OFFLINE_MODE = false
2014-05-06 19:47:47 +02:00
DISABLE_ROUTER_LOG = false
2014-04-21 02:52:00 +02:00
; Generate steps:
; $ cd path/to/gogs/custom/https
; $ ./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 02:52:00 +02:00
CERT_FILE = custom/https/cert.pem
KEY_FILE = custom/https/key.pem
2014-05-26 02:11:25 +02:00
; Upper level of template and static file path
; default is the path where Gogs is executed
STATIC_ROOT_PATH =
2014-07-26 06:24:27 +02:00
; Application level GZIP support
2014-10-14 00:04:07 +02:00
ENABLE_GZIP = false
2014-11-25 00:47:59 +01:00
; Landing page for non-logged users, can be "home" or "explore"
LANDING_PAGE = home
2014-02-18 23:48:02 +01:00
[database]
2014-04-20 04:13:22 +02:00
; Either "mysql", "postgres" or "sqlite3", it's your choice
2014-02-18 23:48:02 +01:00
DB_TYPE = mysql
2014-03-29 06:40:22 +01:00
HOST = 127.0.0.1:3306
2014-02-18 23:48:02 +01:00
NAME = gogs
USER = root
2014-03-10 09:55:53 +01:00
PASSWD =
2014-03-18 06:33:53 +01:00
; For "postgres" only, either "disable", "require" or "verify-full"
SSL_MODE = disable
2014-03-21 06:09:22 +01:00
; For "sqlite3" only
PATH = data/gogs.db
[admin]
2014-03-06 17:10:35 +01:00
[security]
2014-03-31 16:12:36 +02:00
INSTALL_LOCK = false
2014-03-18 06:33:53 +01:00
; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
2014-03-19 12:21:23 +01:00
SECRET_KEY = !#@FDEWREWR&*(
2014-03-22 21:40:09 +01:00
; Auto-login remember days
LOGIN_REMEMBER_DAYS = 7
COOKIE_USERNAME = gogs_awesome
COOKIE_REMEMBER_NAME = gogs_incredible
2014-06-24 19:55:47 +02:00
; Reverse proxy authentication header name of user name
REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER
2014-03-19 12:21:23 +01:00
[service]
ACTIVE_CODE_LIVE_MINUTES = 180
RESET_PASSWD_CODE_LIVE_MINUTES = 180
; User need to confirm e-mail for registration
2014-03-19 13:27:27 +01:00
REGISTER_EMAIL_CONFIRM = false
2014-03-21 06:09:22 +01:00
; 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-22 11:42:19 +01:00
; Cache avatar as picture
ENABLE_CACHE_AVATAR = false
2014-03-24 00:09:11 +01:00
; Mail notification
ENABLE_NOTIFY_MAIL = false
2014-06-21 06:51:41 +02:00
; More detail: https://github.com/gogits/gogs/issues/165
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
2015-03-12 18:25:28 +01:00
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
; Do not check minimum key size with corresponding type
DISABLE_MINIMUM_KEY_SIZE_CHECK = false
2014-03-18 06:33:53 +01:00
2014-06-08 10:45:34 +02:00
[webhook]
2015-07-25 15:32:04 +02:00
; Hook task queue length
QUEUE_LENGTH = 1000
2014-06-08 10:45:34 +02:00
; Deliver timeout in seconds
DELIVER_TIMEOUT = 5
; Allow insecure certification
2015-02-11 18:04:01 +01:00
SKIP_TLS_VERIFY = false
2014-06-08 10:45:34 +02:00
2014-03-18 06:33:53 +01:00
[mailer]
2014-03-18 09:19:10 +01:00
ENABLED = false
2014-03-20 02:05:48 +01:00
; Buffer length of channel, keep it as it is if you don't know what it is.
SEND_BUFFER_LEN = 10
2014-03-18 06:33:53 +01:00
; Name displayed in mail title
2014-03-19 08:24:17 +01:00
SUBJECT = %(APP_NAME)s
2014-03-18 06:33:53 +01:00
; Mail server
2014-03-19 13:27:27 +01:00
; Gmail: smtp.gmail.com:587
2014-04-19 12:00:08 +02:00
; 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 08:39:36 +02:00
HOST =
2015-07-03 08:08:18 +02:00
; 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 16:36:41 +02:00
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
FROM =
2014-03-18 06:33:53 +01:00
; Mailer user name and password
USER =
PASSWD =
2014-03-19 08:24:17 +01:00
[oauth]
ENABLED = false
[oauth.github]
2014-04-14 00:12:07 +02:00
ENABLED = false
CLIENT_ID =
CLIENT_SECRET =
SCOPES = https://api.github.com/user
2014-04-14 00:12:07 +02:00
AUTH_URL = https://github.com/login/oauth/authorize
TOKEN_URL = https://github.com/login/oauth/access_token
; Get client id and secret from
; https://console.developers.google.com/project
[oauth.google]
ENABLED = false
CLIENT_ID =
CLIENT_SECRET =
2014-04-14 00:12:07 +02:00
SCOPES = https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile
AUTH_URL = https://accounts.google.com/o/oauth2/auth
TOKEN_URL = https://accounts.google.com/o/oauth2/token
[oauth.qq]
ENABLED = false
CLIENT_ID =
CLIENT_SECRET =
2014-11-29 03:20:13 +01:00
SCOPES = get_user_info
2014-04-17 08:20:24 +02:00
; QQ 互联
2014-11-29 03:20:13 +01:00
AUTH_URL = https://graph.qq.com/oauth2.0/authorize
TOKEN_URL = https://graph.qq.com/oauth2.0/token
2014-04-14 00:12:07 +02:00
2014-04-14 03:00:12 +02:00
[oauth.weibo]
ENABLED = false
CLIENT_ID =
CLIENT_SECRET =
2014-04-14 03:00:12 +02:00
SCOPES = all
AUTH_URL = https://api.weibo.com/oauth2/authorize
TOKEN_URL = https://api.weibo.com/oauth2/access_token
2014-03-21 14:06:47 +01:00
[cache]
2014-03-21 15:09:57 +01:00
; Either "memory", "redis", or "memcache", default is "memory"
2014-03-21 14:06:47 +01:00
ADAPTER = memory
2014-03-21 15:09:57 +01:00
; For "memory" only, GC interval in seconds, default is 60
INTERVAL = 60
; For "redis" and "memcache", connection host address
2015-01-17 08:17:53 +01:00
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 06:24:27 +02:00
; memcache: `127.0.0.1:11211`
2014-03-21 15:09:57 +01:00
HOST =
2014-03-21 14:06:47 +01:00
2014-03-22 13:49:53 +01:00
[session]
; Either "memory", "file", "redis" or "mysql", default is "memory"
2014-12-21 04:51:16 +01:00
PROVIDER = memory
2014-03-22 14:21:57 +01:00
; Provider config options
2014-03-22 13:49:53 +01:00
; memory: not have any config yet
2014-07-26 06:24:27 +02:00
; file: session file path, e.g. `data/sessions`
2015-01-17 08:17:53 +01:00
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
2014-07-26 06:24:27 +02:00
; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
2014-03-22 13:49:53 +01:00
PROVIDER_CONFIG = data/sessions
2014-03-22 14:21:57 +01:00
; Session cookie name
2014-03-22 13:49:53 +01:00
COOKIE_NAME = i_like_gogits
2014-03-22 14:21:57 +01:00
; If you use session in https only, default is false
2014-03-22 13:49:53 +01:00
COOKIE_SECURE = false
2014-03-22 14:21:57 +01:00
; Enable set cookie, default is true
2014-03-22 13:49:53 +01:00
ENABLE_SET_COOKIE = true
2014-03-22 14:21:57 +01:00
; Session GC time interval, default is 86400
2014-03-22 13:49:53 +01:00
GC_INTERVAL_TIME = 86400
2014-03-22 14:21:57 +01:00
; Session life time, default is 86400
2014-03-22 13:49:53 +01:00
SESSION_LIFE_TIME = 86400
2014-03-22 11:42:19 +01:00
[picture]
; The place to picture data, either "server" or "qiniu", default is "server"
SERVICE = server
2014-11-21 16:58:08 +01:00
AVATAR_UPLOAD_PATH = data/avatars
2014-11-17 02:27:04 +01:00
; Chinese users can choose "duoshuo"
2015-08-10 02:44:43 +02:00
; or a custom avatar source, like: http://cn.gravatar.com/avatar/
2014-11-17 02:27:04 +01:00
GRAVATAR_SOURCE = gravatar
2014-05-02 03:30:04 +02:00
DISABLE_GRAVATAR = false
2014-03-22 11:42:19 +01:00
2014-07-23 21:15:47 +02:00
[attachment]
2014-07-24 15:51:40 +02:00
; Whether attachments are enabled. Defaults to `true`
2014-07-26 06:24:27 +02:00
ENABLE = true
; 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 06:24:27 +02:00
ALLOWED_TYPES = image/jpeg|image/png
2014-07-24 15:23:56 +02:00
; Max size of each file. Defaults to 32MB
2014-07-26 06:24:27 +02:00
MAX_SIZE = 32
2014-07-24 15:23:56 +02:00
; Max number of files per upload. Defaults to 10
2015-08-11 17:24:40 +02:00
MAX_FILES = 5
2014-07-23 21:15:47 +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
FORMAT =
2014-03-19 08:24:17 +01:00
[log]
2014-05-28 07:53:06 +02:00
ROOT_PATH =
2014-03-22 22:59:22 +01:00
; Either "console", "file", "conn", "smtp" or "database", default is "console"
; Use comma to separate multiple modes, e.g. "console, file"
2014-03-19 08:24:17 +01:00
MODE = console
; Buffer length of channel, keep it as it is if you don't know what it is.
BUFFER_LEN = 10000
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace"
LEVEL = Trace
2014-03-19 09:08:25 +01:00
; For "console" mode only
2014-03-19 08:24:17 +01:00
[log.console]
LEVEL =
2014-03-19 08:24:17 +01:00
; For "file" mode only
[log.file]
LEVEL =
2014-03-19 08:24:17 +01:00
; This enables automated log rotate(switch of following options), default is true
2014-03-19 09:08:25 +01:00
LOG_ROTATE = true
2014-03-19 08:24:17 +01:00
; Max line number of single file, default is 1000000
MAX_LINES = 1000000
2014-03-19 09:08:25 +01:00
; Max size shift of single file, default is 28 means 1 << 28, 256MB
MAX_SIZE_SHIFT = 28
2014-03-19 08:24:17 +01:00
; Segment log daily, default is true
DAILY_ROTATE = true
; Expired days of log file(delete after max days), default is 7
MAX_DAYS = 7
; For "conn" mode only
[log.conn]
LEVEL =
2014-03-19 08:24:17 +01:00
; Reconnect host for every single message, default is false
RECONNECT_ON_MSG = false
; Try to reconnect when connection is lost, default is false
RECONNECT = false
; Either "tcp", "unix" or "udp", default is "tcp"
PROTOCOL = tcp
; Host address
ADDR =
2014-03-19 08:24:17 +01:00
; For "smtp" mode only
[log.smtp]
LEVEL =
2014-03-19 08:24:17 +01:00
; Name displayed in mail title, default is "Diagnostic message from serve"
SUBJECT = Diagnostic message from serve
; Mail server
HOST =
2014-03-19 08:24:17 +01:00
; Mailer user name and password
USER =
2014-03-19 08:24:17 +01:00
PASSWD =
2014-03-19 09:08:25 +01:00
; Receivers, can be one or more, e.g. ["1@example.com","2@example.com"]
RECEIVERS =
2014-03-22 22:59:22 +01:00
; For "database" mode only
[log.database]
LEVEL =
2014-06-20 06:25:23 +02:00
; Either "mysql" or "postgres"
DRIVER =
2014-06-20 06:25:23 +02:00
; Based on xorm, e.g.: root:root@localhost/gogs?charset=utf8
CONN =
2014-07-26 06:24:27 +02:00
2014-09-17 20:22:51 +02:00
[git]
2015-01-02 13:14:43 +01:00
MAX_GIT_DIFF_LINES = 10000
2014-11-30 08:26:29 +01:00
; Arguments for command 'git gc', e.g.: "--aggressive --auto"
; see more on http://git-scm.com/docs/git-gc/1.7.5
GC_ARGS =
2014-09-17 20:22:51 +02:00
2015-01-02 13:14:43 +01:00
; Git health check.
[git.fsck]
ENABLE = true
; Execution interval in hours. Default is 24.
INTERVAL = 24
; Arguments for command 'git fsck', e.g.: "--unreachable --tags"
; see more on http://git-scm.com/docs/git-fsck/1.7.5
ARGS =
2014-07-26 06:24:27 +02:00
[i18n]
2015-07-31 06:19:40 +02:00
LANGS = en-US,zh-CN,zh-HK,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT
2015-08-15 18:05:15 +02:00
NAMES = English,简体中文,繁體中文,Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português do Brasil,Polski,български,Italiano
2015-08-05 09:24:26 +02:00
; Used for datetimepicker
[i18n.datelang]
en-US = en
zh-CN = zh
zh-HK = zh-TW
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
[other]
2015-08-10 02:44:43 +02:00
SHOW_FOOTER_BRANDING = false