Last active
April 6, 2017 20:56
-
-
Save marshallswain/87ecbd8025de85d59d56410c082432a1 to your computer and use it in GitHub Desktop.
Example FeathersJS authentication config with `jwt` and `local` authentication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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