xpera-ch / strapi-provider-upload-exoscale

Strapi Upload Provider for Exoscale Storage (S3 compatible)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Strapi : Upload Provider for Exoscale

Strapi Upload Provider for Exoscale Storage (S3 compatible)

Installation

npm install strapi-provider-upload-exoscale

Usage

module.exports = ({ env }) => ({
  upload: {
    provider: "exoscale",
    providerOptions: {
      accessKeyId: env("EXOSCALE_ACCESS_KEY_ID"),
      secretAccessKey: env("EXOSCALE_ACCESS_SECRET"),
      region: env("EXOSCALE_REGION"),
      params: {
        Bucket: env("EXOSCALE_BUCKETNAME"),
      },
    },
  },
});

License

MIT

Links

About

Strapi Upload Provider for Exoscale Storage (S3 compatible)

License:MIT License


Languages

Language:JavaScript 100.0%