mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
827e7b51b5
* Update syntax to ES6 * Use `memcached` instead of `memcache` * Fix restrictions where expirations weren't pushed forward on GET * Fix a bug where we were unnecessarily bumping expirations on key search Closes #201
46 lines
593 B
JavaScript
46 lines
593 B
JavaScript
{
|
|
|
|
"host": "0.0.0.0",
|
|
"port": 7777,
|
|
|
|
"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": "memcached",
|
|
"host": "127.0.0.1",
|
|
"port": 11211,
|
|
"expire": 2592000
|
|
},
|
|
|
|
"documents": {
|
|
"about": "./about.md"
|
|
}
|
|
|
|
}
|