I am currently using image processor that comes bundled with Umbraco. I have my images on azure storage and I'm wondering how I can get the images to be return from azure storage cache via SSL. I have changed the protocol setting in the security config but it doesn't appear to have done anything...
Ah right... Could you post an image url that is generated using GetCropUrl()?
The Azure package you are using stores the full url path rather than a relative one which may be causing issues.
I would strongly recommend using UmbracoFileSystemProviders.Azure package in combination with the CloudImageService. There's instructions here for combining the two
Image processor
I am currently using image processor that comes bundled with Umbraco. I have my images on azure storage and I'm wondering how I can get the images to be return from azure storage cache via SSL. I have changed the protocol setting in the security config but it doesn't appear to have done anything...
Hi Phil,
What
IImageService
implementation are you using to retrieve your images. Is it the CloudImageService or RemoteImageService?http://imageprocessor.org/imageprocessor-web/configuration/#securityconfig
Also how are you storing/saving media to Azure? Are you using Azure Blob Storage Provider or UmbracoFileSystemProviders.Azure
Cheers
James
Hi James
Thanks for you speedy reply, I'm using the RemoteImageServuce and I'm also using Azure Blob Storage Provider
Thanks
Phil
Ah right... Could you post an image url that is generated using GetCropUrl()?
The Azure package you are using stores the full url path rather than a relative one which may be causing issues.
I would strongly recommend using UmbracoFileSystemProviders.Azure package in combination with the CloudImageService. There's instructions here for combining the two
https://github.com/JimBobSquarePants/UmbracoFileSystemProviders.Azure#combining-with-imageprocessor
I worked it out in the end, it wasn't the image processor after all but the image cache that needed to be turned to ssl instead.
Glad you got it sorted!
is working on a reply...