Cloudinary provider for strapi upload
npm install @codeparticle/strapi-provider-upload-cloudinary- LICENSE
- Strapi website
- Strapi documentation
- Strapi community on Discord
- Strapi news on Twitter
``bashusing yarn
yarn add @codeparticle/strapi-provider-upload-cloudinary
Configuration
-
provider defines the name of the provider
- providerOptions is passed down during the construction of the provider. (ex: cloudinary.config). Complete list of options
- actionOptions is passed directly to each method respectively allowing for custom options. You can find the complete list of upload/ uploadStream options and delete optionsSee the documentation about using a provider for information on installing and using a provider. To understand how environment variables are used in Strapi, please refer to the documentation about environment variables.
$3
./config/plugins.js`js
module.exports = ({ env }) => ({
// ...
upload: {
config: {
provider: 'cloudinary',
providerOptions: {
cloud_name: env('CLOUDINARY_NAME'),
api_key: env('CLOUDINARY_KEY'),
api_secret: env('CLOUDINARY_SECRET'),
},
actionOptions: {
upload: {},
uploadStream: {},
delete: {},
},
},
},
// ...
});
`$3
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`js
module.exports = [
// ...
{
name: 'strapi::security',
config: {
contentSecurityPolicy: {
useDefaults: true,
directives: {
'connect-src': ["'self'", 'https:'],
'img-src': ["'self'", 'data:', 'blob:', 'dl.airtable.com', 'res.cloudinary.com'],
'media-src': ["'self'", 'data:', 'blob:', 'dl.airtable.com', 'res.cloudinary.com'],
upgradeInsecureRequests: null,
},
},
},
},
// ...
];
``