You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
3 months ago | |
|---|---|---|
| .. | ||
| src | 3 months ago | |
| .eslintignore | 3 months ago | |
| .eslintrc.js | 3 months ago | |
| .gitattributes | 3 months ago | |
| .gitignore | 3 months ago | |
| .npmignore | 3 months ago | |
| LICENSE | 3 months ago | |
| README.md | 3 months ago | |
| package.json | 3 months ago | |
| rollup.config.mjs | 3 months ago | |
| tsconfig.build.json | 3 months ago | |
| tsconfig.eslint.json | 3 months ago | |
| tsconfig.json | 3 months ago | |
README.md
@strapi/provider-upload-cloudinary
Resources
Links
Installation
# using yarn
yarn add @strapi/provider-upload-cloudinary
# using npm
npm install @strapi/provider-upload-cloudinary --save
Configuration
providerdefines the name of the providerproviderOptionsis passed down during the construction of the provider. (ex:cloudinary.config). Complete list of optionsactionOptionsis passed directly to each method respectively allowing for custom options. You can find the complete list of upload/ uploadStream options and delete options
See 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.
Provider Configuration
./config/plugins.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: {},
},
},
},
// ...
});
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:', 'market-assets.strapi.io', 'res.cloudinary.com'],
'media-src': [
"'self'",
'data:',
'blob:',
'market-assets.strapi.io',
'res.cloudinary.com',
],
upgradeInsecureRequests: null,
},
},
},
},
// ...
];