Reputation: 3797
I have a storage account in azure, It contains container as "images" I am able to access my blob using following path https://mystorageaccount.blob.core.windows.net/images/image1.jpg
Now I have created CDN for https://mystorageaccount.blob.core.windows.net
& got some URL as follow for CDN
http://abcd55555.vo.msecnd.net/
But when I try to access my BLOB using CDN as follow
http://abcd55555.vo.msecnd.net/images/image1.jpg
I get 404 - Not Found Error.
I have EndPoint Enabled, HTTP Protocol Enabled,QUERY STRING STATUS Enabled.
What's going wrong?
Upvotes: 11
Views: 7473
Reputation: 3797
Later I was able to access those BLOB's
I think that we need to wait for some time around 24 or 48 hours to be able to access those BLOBs.
EDIT: Later I come to know that, 60 minutes is delay that is 1 hour.
Upvotes: 20
Reputation: 104
Did you make your blob container public?
http://msdn.microsoft.com/en-us/library/azure/dd179354.aspx
and properly configured your CDN end point?
http://azure.microsoft.com/en-us/documentation/articles/cdn-how-to-use/
Upvotes: 7