I’m not able to find out all the required urls, can anyone please provide a step by step tutorial link or any hints on how exactly should I configure this?
module.exports = ({ env }) => ({
upload: {
config: {
provider: 'strapi-provider-upload-azure-storage',
providerOptions: {
account: env('STORAGE_ACCOUNT'),
accountKey: env('STORAGE_ACCOUNT_KEY'),
serviceBaseURL: env('STORAGE_URL'),
containerName: env('STORAGE_CONTAINER_NAME'),
cdnBaseURL: env('STORAGE_CDN_URL'),
defaultPath: 'assets',
maxConcurrent: 10
}
}
}
});