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
Éric Gaspar b5b33ba494
Patch (#24)
* Cleaning up
2021-04-23 22:36:24 +02:00

33 lines
543 B
JavaScript

{
"host": "127.0.0.1",
"port": __PORT__,
"keyLength": 10,
"maxLength": 400000,
"staticMaxAge": 86400,
"recompressStaticAssets": true,
"logging": [
{
"level": "verbose",
"type": "Console",
"colorize": true
}
],
"keyGenerator": {
"type": "phonetic"
},
"rateLimits": {
"categories": {
"normal": {
"totalRequests": 500,
"every": 60000
}
}
},
"storage": {
"type": "file",
"path": "__DATA_PATH__"
},
"documents": {
"about": "./about.md"
}
}