1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 11:31:22 +00:00
haste-server/config.js

33 lines
391 B
JavaScript
Raw Normal View History

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