How is your config setup? /config/plugins.js you need to setup your DO settings… have you done that?
I’m using “strapi-provider-upload-do” and my settings are as follows:
module.exports = ({ env }) => ({
// ...
upload: {
config: {
provider: 'strapi-provider-upload-do',
providerOptions: {
key: env('DO_SPACE_ACCESS_KEY'),
secret: env('DO_SPACE_SECRET_KEY'),
endpoint: env('DO_SPACE_ENDPOINT'),
space: env('DO_SPACE_BUCKET'),
directory: env('DO_SPACE_DIRECTORY'),
},
},
},
// ...
});
This information was pulled directly from the plugin GitHub page.
[Edit: As of this post, I still can’t get DO’s CDN to work, but it works if you turn it off… just FYI]