This package has been deprecated

Author message:

use strapi-provider-upload-aws-s3 instead

strapi-provider-upload-wasabi

3.0.3 • Public • Published

strapi-provider-upload-wasabi

Wasabi provider for Strapi upload

Install

yarn add strapi-provider-upload-wasabi

In your .env file add the following settings:

WASABI_REGION=your_bucket_region
WASABI_BUCKET=your_bucket_name
WASABI_SECRET=your_access_secret
WASABI_KEY=your_access_key

Then, in your preferred editor, open ${project_root}/config/plugins.js and add the following:

module.exports = ({ env }) => ({
  upload: {
    provider: 'wasabi',
    providerOptions: {
      region: env('WASABI_REGION'),
      bucket: env('WASABI_BUCKET'),
      secret: env('WASABI_SECRET'),
      key: env('WASABI_KEY')
    }
  }
})

To configure per-environment, do the same but in ./config/env/${env}/plugins.js.

?? Contributing

Originally authored by Daniel Sieradski.

Contributions, issues and feature requests are welcome!

Feel free to check issues page.

Show your support

Give a ★ if this project helped you!

/strapi-provider-upload-wasabi/

    Package Sidebar

    Install

    npm i strapi-provider-upload-wasabi

    Homepage

    strapi.io

    Weekly Downloads

    44

    Version

    3.0.3

    License

    MIT

    Unpacked Size

    144 kB

    Total Files

    10

    Last publish

    Collaborators

    • dsieradski