1.1.0 • Published 2 years ago

strapi-provider-upload-cloudcube-s3 v1.1.0

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

strapi-provider-upload-cloudcube-s3

This package is strongly inspired from the official upload S3 provider from Strapi

Resources

Installation

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

# using npm
npm install strapi-provider-upload-cloudcube-s3 --save

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: "strapi-provider-upload-cloudcube-s3",
      providerOptions: {
        accessKeyId: env("CLOUDCUBE_ACCESS_KEY_ID"), // AWS S3 Access Key
        secretAccessKey: env("CLOUDCUBE_SECRET_ACCESS_KEY"), // AWS S3 Secret Key
        url: env("CLOUDCUBE_URL"), // AWS S3 Cloudcube URL - expected syntax : `https://${bucket}.s3.amazonaws.com/${cubename}`
      },
    },
  },
  // ...
});

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

const getBucketHostname = require("strapi-provider-upload-cloudcube-s3").getBucketHostname;
const cloudcubeBucketHostname = getBucketHostname(process.env.CLOUDCUBE_URL);

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