Files
leanote/conf/app.conf-default

70 lines
1.6 KiB
Plaintext
Raw Normal View History

2014-05-07 13:06:24 +08:00
#------------------------
# leanote config
#------------------------
http.port=80
2014-10-22 17:04:37 +08:00
site.url=http://localhost # or http://x.com:8080, http://www.xx.com:9000
2014-05-07 13:06:24 +08:00
# mongdb
db.host=localhost
db.port=27017
db.dbname=leanote # required
2014-10-22 17:04:37 +08:00
db.username=root # if not exists, please leave it blank
db.password=root123 # if not exists, please leave it blank
2014-05-09 15:03:06 +08:00
# or you can set the mongdb url for more complex needs the format is:
2014-05-07 13:06:24 +08:00
# mongodb://myuser:mypass@localhost:40001,otherhost:40001/mydb
2014-05-09 15:03:06 +08:00
# db.url=mongodb://root:root123@localhost:27017/leanote
2014-05-07 13:06:24 +08:00
2014-10-22 17:04:37 +08:00
# You Must Change It !! About Security!!
app.secret=V85ZzBeTnzpsHyjQX4zukbQ8qqtju9y2aDM55VWxAH9Qop19poekx3xkcDVvrD0y
2014-05-07 13:06:24 +08:00
app.name=leanote
http.addr=
http.ssl=false
2014-10-22 17:04:37 +08:00
cookie.domain=
2014-05-07 13:06:24 +08:00
cookie.httponly=false
cookie.prefix=LEANOTE
cookie.secure=false
format.date=01/02/2006
format.datetime=01/02/2006 15:04
results.chunked=false
2014-10-22 17:04:37 +08:00
#--------------------------------
# revel config
# for dev
#--------------------------------
2014-05-07 13:06:24 +08:00
log.trace.prefix = "TRACE "
log.info.prefix = "INFO "
log.warn.prefix = "WARN "
log.error.prefix = "ERROR "
# The default language of this application.
i18n.default_language=en
module.static=github.com/revel/revel/modules/static
[dev]
mode.dev=true
results.pretty=true
watch=true
module.testrunner = github.com/revel/revel/modules/testrunner
log.trace.output = stderr
log.info.output = stderr
log.warn.output = stderr
log.error.output = stderr
[prod]
mode.dev=false
results.pretty=false
watch=false
module.testrunner =
log.trace.output = off
log.info.output = off
log.warn.output = %(app.name)s.log
log.error.output = %(app.name)s.log