Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

strapi-provider-upload-wasabi

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

strapi-provider-upload-wasabi

Wasabi provider for Strapi upload

  • 3.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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!

Keywords

FAQs

Package last updated on 25 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc