4.0.0 • Published 2 years ago

strapi-provider-upload-s3-cdn v4.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

strapi-provider-upload-s3-cdn

This is bassically a carbon copy of the official @strapi/provider-upload-aws-s3 package, with just a small addition to the upload method to support the cdn option.

Resources

Links

Installation

# using yarn
yarn add strapi-provider-upload-s3-cdn

# using npm
npm install strapi-provider-upload-s3-cdn

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.

Provider Configuration

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    config: {
      provider: "aws-s3",
      providerOptions: {
        accessKeyId: env("AWS_ACCESS_KEY_ID"),
        secretAccessKey: env("AWS_ACCESS_SECRET"),
        // endpoint: env('AWS_ENDPOINT'), // if you are using an s3 compatible service like minio or backblaze uncomment this line and comment the next one
        region: env("AWS_REGION"),
        cdn: env("AWS_CDN"), // if you want to use a cdn, you can set the url here also if you decide to not use one just leave it empty
        params: {
          Bucket: env("AWS_BUCKET"),
        },
      },
    },
  },
  // ...
});

Security Middleware Configuration

Due to the default settings in the Strapi Security Middleware you will need to modify the contentSecurityPolicy settings to properly see thumbnail previews in the Media Library. You should replace strapi::security string with the object bellow instead as explained in the middleware configuration documentation.

./config/middlewares.js

module.exports = [
  // ...
  {
    name: "strapi::security",
    config: {
      contentSecurityPolicy: {
        useDefaults: true,
        directives: {
          "connect-src": ["'self'", "https:"],
          "img-src": [
            "'self'",
            "data:",
            "blob:",
            "yourBucketName.s3.yourRegion.amazonaws.com",
          ],
          "media-src": [
            "'self'",
            "data:",
            "blob:",
            "yourBucketName.s3.yourRegion.amazonaws.com",
          ],
          upgradeInsecureRequests: null,
        },
      },
    },
  },
  // ...
];

Required AWS Policy Actions

These are the minimum amount of permissions needed for this provider to work.

"Action": [
  "s3:PutObject",
  "s3:GetObject",
  "s3:ListBucket",
  "s3:DeleteObject",
  "s3:PutObjectAcl"
],