3.5.5 • Published 3 years ago

strapi-provider-upload-aws-s3-enhanced v3.5.5

Weekly downloads
163
License
MIT
Repository
github
Last release
3 years ago

strapi-provider-upload-aws-s3-enhanced

Supported Strapi version GitHub license

Enhanced AWS S3 provider for Strapi uploads: thumbnails, image compression, WebP format, custom domain.

Instalation

yarn add strapi-provider-upload-aws-s3-enhanced

Configuration

Update your config/plugins.js:

module.exports = ({ env }) => ({
  upload: {
    provider: 'aws-s3-enhanced',
    providerOptions: {
      accessKeyId: env('AWS_ACCESS_KEY_ID'),
      secretAccessKey: env('AWS_ACCESS_SECRET'),
      region: env('AWS_REGION'),
      params: {
        Bucket: env('AWS_BUCKET'),
      },
      customDomain: env('CDN_DOMAIN'),
      endpoint: env('CUSTOM_S3_ENDPOINT'), // For third-party S3-compatible storages
      prefix: null,
      quality: 80,
      webp: true,
      accessLevel: env('ACCESS_LEVEL'), // Default set to: 'public-read'
      thumbnails: [
        {
          name: 'custom',
          options: {
            width: 1200,
            withoutEnlargement: true,
          },
        },
        {
          name: 'preview',
          options: {
            width: 500,
            height: 300,
            fit: 'cover',
          },
        },
      ],
    },
  },
});

License

MIT License

3.6.8

3 years ago

3.5.5

3 years ago

3.5.4

3 years ago

3.5.3

3 years ago

3.5.2

3 years ago

3.3.1

4 years ago

3.2.4

4 years ago

3.0.0-beta.17.5

4 years ago