One of my concerns about using Azure Blob Storage is hotlinking.
It looks like a good idea to put static content (images, videos, audio, large JS and CSS files, etc..) in a public container, but then nothing stops other websites to link this content and use it in their websites. Therefore, some webmasters using my content in their sites, would cost me money.
A common protection for hotlinking is to filter by the Referer
HTTP header. How can this be accomplished in Microsoft Azure Blob Storage?
Apparently, it is possible in Amazon S3.
I know this would be bad for Google Image search, since it would be unable of showing my pictures, but well... I could live with that.
Cheers.