UNPKG

353 BPlain TextView Raw
1export default {
2 authStrategies: [],
3 jwtOptions: {
4 header: { typ: 'access' }, // by default is an access token but can be any type
5 audience: 'https://yourdomain.com', // The resource server where the token is processed
6 issuer: 'feathers', // The issuing server, application or resource
7 algorithm: 'HS256',
8 expiresIn: '1d'
9 }
10};