Skip to content

Instantly share code, notes, and snippets.

@marshallswain
Last active April 6, 2017 20:56
Show Gist options
  • Save marshallswain/87ecbd8025de85d59d56410c082432a1 to your computer and use it in GitHub Desktop.
Save marshallswain/87ecbd8025de85d59d56410c082432a1 to your computer and use it in GitHub Desktop.
Example FeathersJS authentication config with `jwt` and `local` authentication
{
"host": "localhost",
"port": 3030,
"public": "../public/",
"paginate": {
"default": 10,
"max": 50
},
"authentication": {
"secret": "jcOPTCaY9ikyp5emSA4ChcF3Q3Pytwmadr6G954JDO8XURb5LW1btEOZ2CVgeCOe",
"strategies": [
"jwt",
"local"
],
"path": "/authentication",
"service": "users"
},
"nedb": "../data"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment