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

46 lines
561 B
JavaScript
Raw Normal View History

2016-10-25 00:00:01 +02:00
{
"host": "127.0.0.1",
2020-07-30 07:04:34 +02:00
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-11-29 15:42:21 +01: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:45:54 +02:00
"type": "file",
2020-07-25 23:14:14 +02:00
"path": "__YNH_DATA_PATH__"
2017-09-26 21:40:21 +02:00
},
2016-10-25 00:00:01 +02:00
"documents": {
"about": "./about.md"
}
2020-07-25 23:14:14 +02:00
2016-10-25 00:00:01 +02:00
}