derrickmehaffy 05d8127b9b Fix provider config examples for v4
Signed-off-by: Derrick Mehaffy <derrickmehaffy@gmail.com>
2021-11-30 10:33:42 -07:00
..
2021-04-29 12:03:54 +02:00
2021-04-29 12:03:54 +02:00
2021-04-29 12:03:54 +02:00
2021-04-29 12:03:54 +02:00
2021-11-29 20:16:44 +01:00
2021-11-30 10:33:42 -07: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: {
    config: {
      provider: 'rackspace',
      providerOptions: {
        username: env('RACKSPACE_USERNAME'),
        apiKey: env('RACKSPACE_KEY'),
        region: env('RACKSPACE_REGION'),
        container: env('RACKSPACE_CONTAINER'),
      },
    },
  },
  // ...
});

Resources