haste-server/config.js

33 lines
391 B
JavaScript
Raw Normal View History

{
2011-11-19 05:57:23 +08:00
"host": "localhost",
"port": 7777,
2011-11-19 06:26:25 +08:00
"keyLength": 6,
2011-11-21 23:17:23 +08:00
"maxLength": 400000,
2011-11-24 00:31:50 +08:00
"cacheStaticAssets": false,
2011-11-22 12:00:28 +08:00
2011-11-19 06:26:25 +08:00
"logging": [
{
"level": "verbose",
"type": "Console",
"colorize": true
}
2011-11-19 07:04:24 +08:00
],
"storage": {
2011-11-19 08:52:18 +08:00
"type": "redis",
"host": "localhost",
"port": 6379,
2011-11-22 11:03:50 +08:00
"db": 2,
"expire": 3600
2011-11-22 22:22:37 +08:00
},
"documents": {
"about": "./about.md"
2011-11-19 07:04:24 +08:00
}
}