strapi/packages/strapi-provider-upload-rackspace
Alexandre Bodin c909d7162d v3.0.3
2020-06-18 19:17:15 +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-01-08 15:41:08 +01:00
2020-06-18 19:17:15 +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')
    }
  },
  // ...
});

Resources