Files
mykb/config/default.json
2018-09-21 15:17:55 -05:00

34 lines
586 B
JSON

{
"docsDir": "../kb",
"trustCloudflare": false,
"cacheSize": 7500000,
"paginate": {
"default": 10,
"max": 50
},
"authentication": {
"secret": "",
"strategies": [
"jwt",
"local"
],
"path": "/auth",
"service": "users",
"jwt": {
"header": {
"typ": "access"
},
"subject": "anonymous",
"issuer": "feathers",
"algorithm": "HS256",
"expiresIn": "1d"
},
"local": {
"entity": "user",
"usernameField": "email",
"passwordField": "password"
}
},
"nedb": "../db"
}