1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/haste_ynh.git synced 2024-09-03 20:36:28 +02:00
haste_ynh/conf/config.js

48 lines
605 B
JavaScript
Raw Normal View History

2016-10-25 00:00:01 +02:00
{
"host": "127.0.0.1",
2017-09-26 21:33:09 +02:00
"port": __PORT__,
2016-10-25 00:00:01 +02:00
"keyLength": 10,
"maxLength": 400000,
"staticMaxAge": 86400,
"recompressStaticAssets": true,
2017-09-26 21:40:21 +02:00
2016-10-25 00:00:01 +02:00
"logging": [
{
2017-09-26 21:40:21 +02:00
"level": "verbose",
2016-10-25 00:00:01 +02:00
"type": "Console",
"colorize": true
}
2017-09-26 21:40:21 +02:00
],
2016-10-25 00:00:01 +02:00
"keyGenerator": {
"type": "phonetic"
},
"rateLimits": {
"categories": {
"normal": {
"totalRequests": 500,
"every": 60000
}
}
},
"storage": {
2017-09-26 21:40:21 +02:00
"type": "redis",
"host": "0.0.0.0",
"port": 6379,
"db": 2,
"expire": 2592000
},
2016-10-25 00:00:01 +02:00
"documents": {
"about": "./about.md"
}
}