Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 556 Bytes

File metadata and controls

33 lines (24 loc) · 556 Bytes

Strapi : Upload Provider

Upload provider for strapi , with S3 and CDN

Installation

Use the package manager npm to install provider.

npm install strapi-provider-upload-aws-s3-cdn

Usage

module.exports = ({ env }) => ({
    upload: {
      provider: 'aws-s3-cdn',
      providerOptions: {
        region: <aws-region> ,
        params: {
          Bucket: <bucketName> ,
        },
        cdn: <cdn url>
      },
    },
  });

License

MIT