Hi,
I am attempting to configure Azure Blob Storage for editor caching using the following JSON configuration in default.json:
“storage”: {
“name”: “storage-az”,
“region”: “”,
“endpoint”: “https://.blob.core.windows.net/”,
“bucketName”: “”,
“storageFolderName”: “”,
“cacheFolderName”: “”,
“urlExpires”: 604800,
“accessKeyId”: “”,
“secretAccessKey”: “”,
“sslEnabled”: false,
“s3ForcePathStyle”: false,
“externalHost”: “”
}
However, I am encountering a “download failed” error during blob access. Can someone help me refactor this configuration properly to support Azure Blob Storage authentication and endpoint conventions? Specifically:
What properties should replace bucketName, accessKeyId, and secretAccessKey for Azure Blob Storage?
Should sslEnabled be true or false for Azure Blob Storage?
Is the use of s3ForcePathStyle valid or required for Azure Blob Storage?
What is the recommended way to specify the container and folders in this config for Azure Blob Storage?