Skip to content

strapi-provider-upload-aws-s3 3.6.0

Install from the command line:
Learn more about npm packages
$ npm install @Kites-Foundation/strapi-provider-upload-aws-s3@3.6.0
Install via package.json:
"@Kites-Foundation/strapi-provider-upload-aws-s3": "3.6.0"

About this version

strapi-provider-upload-aws-s3

This project is a fork of the official strapi s3 upload API with additional code added for CDN and prerfix support.

Configurations

Your configuration is passed down to the provider. (e.g: new AWS.S3(config)). You can see the complete list of options here

See the using a provider documentation for information on installing and using a provider. And see the environment variables for setting and using environment variables in your configs.

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: 'aws-s3',
    providerOptions: {
      accessKeyId: env('AWS_ACCESS_KEY_ID'),
      secretAccessKey: env('AWS_ACCESS_SECRET'),
      region: env('AWS_REGION'),
      params: {
        Bucket: env('AWS_BUCKET'),
      },
      cdn: env('CDN_URL'),
      prefix: env('S3_PREFIX')
    },
  },
  // ...
});

Resources

Links

Details


Assets

  • strapi-provider-upload-aws-s3-3.6.0.tgz

Download activity

  • Total downloads 0
  • Last 30 days 0
  • Last week 0
  • Today 0

Recent versions

View all