arvindr21 / blueimp-file-upload-expressjs

A simple express module for integrating jQuery File Upload.
http://expressjs-fileupload.cloudno.de/
104 stars 69 forks source link

AWS transport fixed and added new features #47

Closed martinschaer closed 8 years ago

martinschaer commented 9 years ago

Fixes #45 and #46

New features:

This is an example of the new options (also documented on lib/transport/aws.js):

options = {
   storage: {
     type: 'aws',
     aws: {
       accessKeyId: '...',
       secretAccessKey: '...',
       region: 'us-west-2',
       bucketName: '...',
       acl: 'public-read',
       cacheControl: 'max-age=630720000, public',
       expiresInMilliseconds: 63072000000,
       getSignedUrl: false,
       path: 'uploads/'
     }
   }
 }
arvindr21 commented 9 years ago

Thanks @martinschaer. @mycaule any comments?

pplaatje commented 8 years ago

Hi,

when can this be merged? I'm actually waiting for the AWS transport fix (mark file as proccessed).

edwin-rodriguez commented 8 years ago

Hey Guys, Thanks @martinschaer for fixing this issue! :) any word on this pull request so far?

Thanks!

pplaatje commented 8 years ago

Thanks!

On Sun, 1 Nov 2015 09:31 Michel Hua notifications@github.com wrote:

Merged #47 https://github.com/arvindr21/blueimp-file-upload-expressjs/pull/47.

— Reply to this email directly or view it on GitHub https://github.com/arvindr21/blueimp-file-upload-expressjs/pull/47#event-451293768 .