2014-03-18 05:33:53 +00:00
|
|
|
; App name that shows on every page title
|
2014-03-04 00:03:08 +00:00
|
|
|
APP_NAME = Gogs: Go Git Service
|
2014-03-19 11:21:23 +00:00
|
|
|
APP_LOGO = img/favicon.png
|
2014-03-18 05:33:53 +00:00
|
|
|
; !!MUST CHANGE TO YOUR USER NAME!!
|
2014-02-25 10:58:55 +00:00
|
|
|
RUN_USER = lunny
|
2014-03-19 07:24:17 +00:00
|
|
|
; Either "dev", "prod" or "test", default is "dev"
|
2014-03-18 05:33:53 +00:00
|
|
|
RUN_MODE = dev
|
2014-02-20 06:53:56 +00:00
|
|
|
|
|
|
|
[repository]
|
2014-03-15 04:50:51 +00:00
|
|
|
ROOT = /Users/%(RUN_USER)s/git/gogs-repositories
|
2014-03-21 10:15:58 +00:00
|
|
|
LANG_IGNS = Google Go|C|C++|Python|Ruby|C Sharp
|
|
|
|
LICENSES = Apache v2 License|GPL v2|MIT License|Affero GPL|Artistic License 2.0|BSD (3-Clause) License
|
2014-02-12 19:54:09 +00:00
|
|
|
|
|
|
|
[server]
|
2014-03-19 11:21:23 +00:00
|
|
|
DOMAIN = localhost
|
|
|
|
ROOT_URL = http://%(DOMAIN)s:%(HTTP_PORT)s/
|
2014-02-12 19:54:09 +00:00
|
|
|
HTTP_ADDR =
|
2014-02-18 22:48:02 +00:00
|
|
|
HTTP_PORT = 3000
|
|
|
|
|
|
|
|
[database]
|
2014-03-21 05:09:22 +00:00
|
|
|
; Either "mysql", "postgres" or "sqlite3"(binary release only), it's your choice
|
2014-02-18 22:48:02 +00:00
|
|
|
DB_TYPE = mysql
|
|
|
|
HOST =
|
|
|
|
NAME = gogs
|
|
|
|
USER = root
|
2014-03-10 08:55:53 +00:00
|
|
|
PASSWD =
|
2014-03-18 05:33:53 +00:00
|
|
|
; For "postgres" only, either "disable", "require" or "verify-full"
|
2014-03-17 18:03:58 +00:00
|
|
|
SSL_MODE = disable
|
2014-03-21 05:09:22 +00:00
|
|
|
; For "sqlite3" only
|
|
|
|
PATH = data/gogs.db
|
|
|
|
|
|
|
|
[admin]
|
2014-03-06 16:10:35 +00:00
|
|
|
|
|
|
|
[security]
|
2014-03-18 05:33:53 +00:00
|
|
|
; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
|
2014-03-19 11:21:23 +00:00
|
|
|
SECRET_KEY = !#@FDEWREWR&*(
|
|
|
|
|
|
|
|
[service]
|
|
|
|
ACTIVE_CODE_LIVE_MINUTES = 180
|
|
|
|
RESET_PASSWD_CODE_LIVE_MINUTES = 180
|
|
|
|
; User need to confirm e-mail for registration
|
2014-03-19 12:27:27 +00:00
|
|
|
REGISTER_EMAIL_CONFIRM = false
|
2014-03-21 05:09:22 +00:00
|
|
|
; Does not allow register and admin create account only
|
|
|
|
DISENABLE_REGISTERATION = false
|
2014-03-21 05:59:15 +00:00
|
|
|
; User must sign in to view anything.
|
|
|
|
REQUIRE_SIGNIN_VIEW = false
|
2014-03-22 10:42:19 +00:00
|
|
|
; Cache avatar as picture
|
|
|
|
ENABLE_CACHE_AVATAR = false
|
2014-03-18 05:33:53 +00:00
|
|
|
|
|
|
|
[mailer]
|
2014-03-18 08:19:10 +00:00
|
|
|
ENABLED = false
|
2014-03-20 01:05:48 +00: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 05:33:53 +00:00
|
|
|
; Name displayed in mail title
|
2014-03-19 07:24:17 +00:00
|
|
|
SUBJECT = %(APP_NAME)s
|
2014-03-18 05:33:53 +00:00
|
|
|
; Mail server
|
2014-03-19 12:27:27 +00:00
|
|
|
; Gmail: smtp.gmail.com:587
|
2014-03-18 05:33:53 +00:00
|
|
|
HOST =
|
2014-03-19 12:27:27 +00:00
|
|
|
; Mail from address
|
|
|
|
FROM =
|
2014-03-18 05:33:53 +00:00
|
|
|
; Mailer user name and password
|
|
|
|
USER =
|
2014-03-19 07:24:17 +00:00
|
|
|
PASSWD =
|
|
|
|
|
2014-03-21 13:06:47 +00:00
|
|
|
[cache]
|
2014-03-21 14:09:57 +00:00
|
|
|
; Either "memory", "redis", or "memcache", default is "memory"
|
2014-03-21 13:06:47 +00:00
|
|
|
ADAPTER = memory
|
2014-03-21 14:09:57 +00:00
|
|
|
; For "memory" only, GC interval in seconds, default is 60
|
|
|
|
INTERVAL = 60
|
|
|
|
; For "redis" and "memcache", connection host address
|
|
|
|
; redis: ":6039"
|
|
|
|
; memcache: "127.0.0.1:11211"
|
|
|
|
HOST =
|
2014-03-21 13:06:47 +00:00
|
|
|
|
2014-03-22 12:49:53 +00:00
|
|
|
[session]
|
|
|
|
; Either "memory", "file", "redis" or "mysql", default is "memory"
|
|
|
|
PROVIDER = file
|
|
|
|
; provider config
|
|
|
|
; memory: not have any config yet
|
|
|
|
; file: session file path
|
|
|
|
; e.g. tmp/sessions
|
|
|
|
; redis: config like redis server addr,poolSize,password
|
|
|
|
; e.g. 127.0.0.1:6379,100,astaxie
|
|
|
|
; mysql: go-sql-driver/mysql dsn config string
|
|
|
|
; e.g. root:password@/session_table
|
|
|
|
PROVIDER_CONFIG = data/sessions
|
|
|
|
; session cookie name
|
|
|
|
COOKIE_NAME = i_like_gogits
|
|
|
|
; if you use session in https only, default is false
|
|
|
|
COOKIE_SECURE = false
|
|
|
|
; enable set cookie, default is true
|
|
|
|
ENABLE_SET_COOKIE = true
|
|
|
|
; session gc time interval, default is 86400
|
|
|
|
GC_INTERVAL_TIME = 86400
|
|
|
|
; session life time, default is 86400
|
|
|
|
SESSION_LIFE_TIME = 86400
|
|
|
|
; session id hash func, default is sha1
|
|
|
|
SESSION_ID_HASHFUNC = sha1
|
|
|
|
; session hash key, default is use random string
|
|
|
|
SESSION_ID_HASHKEY =
|
|
|
|
|
2014-03-22 10:42:19 +00:00
|
|
|
[picture]
|
|
|
|
; The place to picture data, either "server" or "qiniu", default is "server"
|
|
|
|
SERVICE = server
|
|
|
|
; For "server" only, root path of picture data, default is "data/pictures"
|
|
|
|
PATH = data/pictures
|
|
|
|
|
2014-03-19 07:24:17 +00:00
|
|
|
[log]
|
|
|
|
; Either "console", "file", "conn" or "smtp", default is "console"
|
|
|
|
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 08:08:25 +00:00
|
|
|
; For "console" mode only
|
2014-03-19 07:24:17 +00:00
|
|
|
[log.console]
|
|
|
|
LEVEL =
|
|
|
|
|
|
|
|
; For "file" mode only
|
|
|
|
[log.file]
|
|
|
|
LEVEL =
|
2014-03-19 08:08:25 +00:00
|
|
|
FILE_NAME = log/gogs.log
|
2014-03-19 07:24:17 +00:00
|
|
|
; This enables automated log rotate(switch of following options), default is true
|
2014-03-19 08:08:25 +00:00
|
|
|
LOG_ROTATE = true
|
2014-03-19 07:24:17 +00:00
|
|
|
; Max line number of single file, default is 1000000
|
|
|
|
MAX_LINES = 1000000
|
2014-03-19 08:08:25 +00:00
|
|
|
; Max size shift of single file, default is 28 means 1 << 28, 256MB
|
|
|
|
MAX_SIZE_SHIFT = 28
|
2014-03-19 07:24:17 +00: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 =
|
|
|
|
; 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 =
|
|
|
|
|
|
|
|
; For "smtp" mode only
|
|
|
|
[log.smtp]
|
|
|
|
LEVEL =
|
|
|
|
; Name displayed in mail title, default is "Diagnostic message from serve"
|
|
|
|
SUBJECT = Diagnostic message from serve
|
|
|
|
; Mail server
|
|
|
|
HOST =
|
|
|
|
; Mailer user name and password
|
|
|
|
USER =
|
|
|
|
PASSWD =
|
2014-03-19 08:08:25 +00:00
|
|
|
; Receivers, can be one or more, e.g. ["1@example.com","2@example.com"]
|
2014-03-19 07:24:17 +00:00
|
|
|
RECEIVERS =
|