A provider for strapi server to upload file to Qiniu Cloud
A provider for strapi server to upload file to Qiniu Cloud
$ npm install provider-upload-qiniu-cloud --save
or
$ yarn add provider-upload-qiniu-cloud --save
For more details, please see: https://strapi.io/documentation/developer-docs/latest/development/plugins/upload.html#using-a-provider
The lastest version of the provider supports v4 by default. See example below for ./config/plugins.js
:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = ({ env }) => ({
upload: {
config: {
provider: 'provider-upload-qiniu-cloud', // full package name is required
providerOptions: {
accessKey: env('ACCESS_KEY', ''),
secretKey: env('SECRET_KEY', ''),
prefix: env('PREFIX', ''),
zone: env('ZONE', 'Zone_z0'),
bucket: env('BUCKET', ''),
publicBucketDomain: env('PUBLIC_BUCKET_DOMAIN', ''),
https: env('HTTPS', true),
cdn: env('CDN', false),
},
},
},
});
Official documentation here
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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = [
// ...
{
name: 'strapi::security',
config: {
contentSecurityPolicy: {
useDefaults: true,
directives: {
'connect-src': ["'self'", 'https:'],
'img-src': ["'self'", 'data:', 'blob:', '*'],
'media-src': ["'self'", 'data:', 'blob:', '*'],
upgradeInsecureRequests: null,
},
},
},
},
// ...
];
Property | type | value |
---|---|---|
accessKey | string | <qiniu access key id> |
secretKey | string | <qiniu access key secret> |
bucket | string | bucket name |
prefix | string | dir name in bucket |
zone | string | qiniu region (see Qiniu Development Documentation below) |
publicBucketDomain | string | custom origin domain name for accessing the uploaded file, e.g. // example: http://if-pbl.qiniudn.com |
https | boolean | Domain with or without https |
cdn | boolean | Whether to use cdn acceleration when uploading |
npm install provider-upload-qiniu-cloud
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.