S3 storage plugin for moneypenny
Authentication Service ( S3 storage provider for moneypenny authentication service )
Moneypenny acts as an authentication service that offers multiple authentication strategies to a backend service and sends a JSON web token(JWT) encripted using a shared secret as a response.
var s3MoneyPennyStore = require('moneypenny-s3-storage')({
bucket: 'TEST-BUCKET'
})
var moneypennyServer = require('moneypenny')({
storageProvider: s3MoneyPennyStore,
loginUrl: '/login.html',
secretOrPrivateKey: 'top_secret'
});