The cache folder in my Azure Blob Storage is empty, yet i have added "AddAzureBlobImageSharpCache"
On a new Umbraco 13 site with the media stored in Azure blob storage, no files are being created in the cache Container:
The blob media is working correctly, and we configured the UmbracoBuilder like so:
I was under the impression that ImageSharp would read the Blob settings from appsettings and did not need seperate configuration - but am i wrong? I tried removing the "ContainerRootPath" from appsettings, but then i got no images at all.
On my workstation - and on the Linux web app the mediacache is in the app, rather than the blob storage it seems:
The cache folder in my Azure Blob Storage is empty, yet i have added "AddAzureBlobImageSharpCache"
On a new Umbraco 13 site with the media stored in Azure blob storage, no files are being created in the cache Container:
The blob media is working correctly, and we configured the UmbracoBuilder like so:
I was under the impression that ImageSharp would read the Blob settings from appsettings and did not need seperate configuration - but am i wrong? I tried removing the "ContainerRootPath" from appsettings, but then i got no images at all.
On my workstation - and on the Linux web app the mediacache is in the app, rather than the blob storage it seems:
What am i missing here?
If you change your container name to "MyWebsite", inside that container you will find "media" and "cache" folders.
You might find a "cache" folder inside your current "Media" container alongside a nested "media" folder?
Indeed !!! the cache folder was inside the media Blob Container all along. Thanks Jeavon!
Its an upgrade, if you were wondering about the numbers.
Is there any way to have it so the "cache" container is at the same level as "media" ?
Yes, you can,
Then in appsettings.json add the "Cache" settings
e.g.
is working on a reply...