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
|
2014-03-19 16:51:23 +05:30
|
|
|
APP_LOGO = img/favicon.png
|
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
|
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/
|
2014-08-30 18:42:53 +05:30
|
|
|
HTTP_ADDR =
|
2014-05-02 04:23:41 +05:30
|
|
|
HTTP_PORT = 3000
|
2014-05-11 20:48:10 +05:30
|
|
|
SSH_PORT = 22
|
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:
|
|
|
|
; $ cd path/to/gogs/custom/https
|
|
|
|
; $ go run $GOROOT/src/pkg/crypto/tls/generate_cert.go -ca=true -duration=8760h0m0s -host=myhost.example.com
|
|
|
|
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
|
2014-08-30 18:42:53 +05:30
|
|
|
STATIC_ROOT_PATH =
|
2014-07-26 09:54:27 +05:30
|
|
|
; Application level GZIP support
|
|
|
|
ENABLE_GZIP = false
|
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"
|
2014-03-17 23:33:58 +05:30
|
|
|
SSL_MODE = disable
|
2014-03-21 10:39:22 +05:30
|
|
|
; For "sqlite3" only
|
|
|
|
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
|
2014-04-22 03:33:04 +05:30
|
|
|
DISABLE_REGISTRATION = false
|
2014-03-21 11:29:15 +05:30
|
|
|
; User must sign in to view anything.
|
|
|
|
REQUIRE_SIGNIN_VIEW = false
|
2014-03-22 16:12:19 +05:30
|
|
|
; Cache avatar as picture
|
|
|
|
ENABLE_CACHE_AVATAR = 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
|
2014-03-18 11:03:53 +05:30
|
|
|
|
2014-06-08 14:15:34 +05:30
|
|
|
[webhook]
|
|
|
|
; Cron task interval in minutes
|
|
|
|
TASK_INTERVAL = 1
|
|
|
|
; Deliver timeout in seconds
|
|
|
|
DELIVER_TIMEOUT = 5
|
|
|
|
|
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.
|
|
|
|
SEND_BUFFER_LEN = 10
|
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
|
2014-08-30 18:42:53 +05:30
|
|
|
HOST =
|
2014-03-19 17:57:27 +05:30
|
|
|
; Mail from address
|
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 =
|
|
|
|
PASSWD =
|
2014-03-19 12:54:17 +05:30
|
|
|
|
2014-04-07 22:26:40 +05:30
|
|
|
[oauth]
|
|
|
|
ENABLED = false
|
|
|
|
|
|
|
|
[oauth.github]
|
2014-04-14 03:42:07 +05:30
|
|
|
ENABLED = false
|
2014-08-30 18:42:53 +05:30
|
|
|
CLIENT_ID =
|
|
|
|
CLIENT_SECRET =
|
2014-04-07 22:30:59 +05:30
|
|
|
SCOPES = https://api.github.com/user
|
2014-04-14 03:42:07 +05:30
|
|
|
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
|
2014-08-30 18:42:53 +05:30
|
|
|
CLIENT_ID =
|
|
|
|
CLIENT_SECRET =
|
2014-04-14 03:42:07 +05:30
|
|
|
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
|
2014-08-30 18:42:53 +05:30
|
|
|
CLIENT_ID =
|
|
|
|
CLIENT_SECRET =
|
2014-04-14 03:42:07 +05:30
|
|
|
SCOPES = all
|
2014-04-17 11:50:24 +05:30
|
|
|
; QQ 互联
|
|
|
|
; AUTH_URL = https://graph.qq.com/oauth2.0/authorize
|
|
|
|
; TOKEN_URL = https://graph.qq.com/oauth2.0/token
|
|
|
|
; Tencent weibo
|
|
|
|
AUTH_URL = https://open.t.qq.com/cgi-bin/oauth2/authorize
|
|
|
|
TOKEN_URL = https://open.t.qq.com/cgi-bin/oauth2/access_token
|
2014-04-14 03:42:07 +05:30
|
|
|
|
2014-04-14 06:30:12 +05:30
|
|
|
[oauth.weibo]
|
|
|
|
ENABLED = false
|
2014-08-30 18:42:53 +05:30
|
|
|
CLIENT_ID =
|
|
|
|
CLIENT_SECRET =
|
2014-04-14 06:30:12 +05:30
|
|
|
SCOPES = all
|
|
|
|
AUTH_URL = https://api.weibo.com/oauth2/authorize
|
|
|
|
TOKEN_URL = https://api.weibo.com/oauth2/access_token
|
|
|
|
|
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
|
2014-07-26 09:54:27 +05:30
|
|
|
; redis: `:6039`
|
|
|
|
; 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"
|
|
|
|
PROVIDER = file
|
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`
|
|
|
|
; redis: config like redis server addr, poolSize, password, e.g. `127.0.0.1:6379,100,gogs`
|
|
|
|
; 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 18:49:27 +05:30
|
|
|
; session id hash func, Either "sha1", "sha256" or "md5" default is sha1
|
2014-03-22 18:19:53 +05:30
|
|
|
SESSION_ID_HASHFUNC = sha1
|
2014-03-22 18:51:57 +05:30
|
|
|
; Session hash key, default is use random string
|
2014-03-22 18:19:53 +05:30
|
|
|
SESSION_ID_HASHKEY =
|
|
|
|
|
2014-03-22 16:12:19 +05:30
|
|
|
[picture]
|
|
|
|
; The place to picture data, either "server" or "qiniu", default is "server"
|
|
|
|
SERVICE = server
|
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
|
2014-07-26 09:54:27 +05:30
|
|
|
MAX_SIZE = 32
|
2014-07-24 18:53:56 +05:30
|
|
|
; Max number of files per upload. Defaults to 10
|
2014-07-26 09:54:27 +05:30
|
|
|
MAX_FILES = 10
|
2014-07-24 00:45:47 +05:30
|
|
|
|
2014-07-25 02:01:59 +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
|
2014-08-30 18:42:53 +05:30
|
|
|
FORMAT =
|
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
|
|
|
|
; 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]
|
2014-08-30 18:42:53 +05:30
|
|
|
LEVEL =
|
2014-03-19 12:54:17 +05:30
|
|
|
|
|
|
|
; For "file" mode only
|
|
|
|
[log.file]
|
2014-08-30 18:42:53 +05:30
|
|
|
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]
|
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 =
|
2014-03-19 12:54:17 +05:30
|
|
|
; Name displayed in mail title, default is "Diagnostic message from serve"
|
|
|
|
SUBJECT = Diagnostic message from serve
|
|
|
|
; 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 =
|
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"]
|
2014-08-30 18:42:53 +05:30
|
|
|
RECEIVERS =
|
2014-03-23 03:29:22 +05:30
|
|
|
|
|
|
|
; For "database" mode only
|
|
|
|
[log.database]
|
2014-08-30 18:42:53 +05:30
|
|
|
LEVEL =
|
2014-06-20 09:55:23 +05:30
|
|
|
; Either "mysql" or "postgres"
|
2014-08-30 18:42:53 +05:30
|
|
|
DRIVER =
|
2014-06-20 09:55:23 +05:30
|
|
|
; Based on xorm, e.g.: root:root@localhost/gogs?charset=utf8
|
2014-08-30 18:42:53 +05:30
|
|
|
CONN =
|
2014-07-26 09:54:27 +05:30
|
|
|
|
|
|
|
[i18n]
|
2014-08-15 15:59:41 +05:30
|
|
|
LANGS = en-US,zh-CN,de-DE
|
|
|
|
NAMES = English,简体中文,Deutsch
|