strapi/packages/strapi-provider-upload-rackspace
Pierre Noël 567401f0c1
Fix/warn file too big (#8033)
* handle fileTooBig errors

Signed-off-by: Pierre Noël <petersg83@gmail.com>

* add entityTooLarge error in provider plugins

Signed-off-by: Pierre Noël <petersg83@gmail.com>

* fix linter

Signed-off-by: Pierre Noël <petersg83@gmail.com>

* refacto

Signed-off-by: Pierre Noël <petersg83@gmail.com>

* Add better error message for 413 errors in ML

Signed-off-by: soupette <cyril.lpz@gmail.com>

* refacto

Signed-off-by: Pierre Noël <petersg83@gmail.com>

* refacto

Signed-off-by: Pierre Noël <petersg83@gmail.com>

Co-authored-by: soupette <cyril.lpz@gmail.com>
2020-09-29 12:00:25 +02:00
..
2018-10-19 09:26:09 +02:00
2018-10-19 09:26:09 +02:00
2018-10-19 09:26:09 +02:00
2020-07-08 09:45:28 +02:00
2020-09-24 14:51:49 +02:00
2020-09-29 12:00:25 +02:00

strapi-provider-upload-rackspace

Configurations

Your configuration is passed down to the client initialization. (e.g: createClient(config)). The implementation is based on the package pkgcloud. You can read the docs 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: {
    provider: 'rackspace',
    providerOptions: {
      username: env('RACKSPACE_USERNAME'),
      apiKey: env('RACKSPACE_KEY'),
      region: env('RACKSPACE_REGION'),
      container: env('RACKSPACE_CONTAINER'),
    },
  },
  // ...
});

Resources