3.5.4 • Published 3 years ago

strapi-provider-upload-tool-minio v3.5.4

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

strapi-provider-upload-tool-minio

Configurations

Your configuration is passed down to the provider. (e.g: new AWS.S3(config)). You can see the complete list of options here

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: 'tool-minio',
    providerOptions: {
        endPoint: 'MINIO-ENDPOINT',
        port: 80,
        useSSL: false,
        bucketName: 'BUCKETNAME',
        accessKey: 'MINIO-ACCESS-KEY',
        secretKey: 'MINIO-SECRET-KEY',
        params: {
          target: 'TARGET-DIR',
        },
      },
  },
  // ...
});