4.0.5 • Published 2 years ago

@fiercecat/strapi-provider-upload-oss v4.0.5

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
2 years ago

@fiercecat/strapi-provider-upload-oss

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.

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
      enabled: true,
      config: {
          provider: '@fiercecat/strapi-provider-upload-oss',
          providerOptions: {
          baseUrl: env('OSS_BASE_URL'),
          accessKeyId: env('OSS_ACCESS_KEY_ID'),
          secretAccessKey: env('OSS_ACCESS_SECRET'),
          endpoint: env('OSS_ENDPOINT'),
          params: {
              Bucket: env('OSS_BUCKET'),
        },
      },
    },
  },
  // ...
});

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"
],

Resources

Links

4.0.5

2 years ago

4.0.4

2 years ago

4.0.3

2 years ago

4.0.2

2 years ago

4.0.1

2 years ago

4.0.0

2 years ago

0.1.8

2 years ago

1.0.1

2 years ago