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

34 lines
543 B
JavaScript
Raw Normal View History

2016-10-25 00:00:01 +02:00
{
2020-09-06 18:03:25 +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,
"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",
2021-04-23 22:36:24 +02:00
"path": "__DATA_PATH__"
2017-09-26 21:40:21 +02:00
},
2016-10-25 00:00:01 +02:00
"documents": {
"about": "./about.md"
2020-09-06 18:03:25 +02:00
}
2016-10-25 00:00:01 +02:00
}