user2286552
user2286552

Reputation:

Azure CDN Blob forces HTML files to download instead of rendering

I tried uploading an HTML file to my azure blob storage, and retrieved the link.
Unfortunately, when entering the URL into a web browser, it does not load the page, it tries to download it.

How can I make HTML files on Azure CDN load as web pages, not downloads?

Upvotes: 4

Views: 3132

Answers (2)

Shubham
Shubham

Reputation: 37

We need to set it's property Content type through Blob Options class.

PHP :

    namespace - use MicrosoftAzure\Storage\Blob\Models\CreateBlobOptions;
    //use code where you are creating blob
    $opts = new CreateBlobOptions();
    //$opts->setCacheControl('test');
    $opts->setContentEncoding('UTF-8');
    $opts->setContentLanguage('en-us');
    //$opts->setContentLength(512);
    $opts->setContentMD5(null);
    $opts->setContentType($mimeType);
    $blobRestProxy->createBlockBlob($containerName, $indexFile, $content,$opts);

It will work in git package : "microsoft/windowsazure": "^0.5"

In C#

entryData.DestinationBlob.Properties.ContentType = "image/jpeg";
entryData.DestinationBlob.SetProperties();

Upvotes: 1

user2286552
user2286552

Reputation:

FIXED! Turns out in Azure, I need to edit the properties of the html file, and set the content type to text/html. :)

Upvotes: 3

Related Questions