Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a simple cost effective way to host a static HTML website within the Azure Platform. The website will actually work as a support area for our products and will be hosted under a sub-domain e.g. support.mydomain.com.

As the site will be static is it possible to deploy all my HMTL files and images into a simple blob storage container and create a CNAME in our DNS record to point the sub-domain to this location?

Is it common for static html websites to be hosted from a simple Windows Azure blob container? It just seems to me to be much cheaper than using a Web Role or Virtual Machine.

share|improve this question
Yes you can use Azure Storage to serve HTML Content, along with CSS and JS if needed. – GlennFerrieLive Feb 21 at 21:17

closed as off topic by Will May 6 at 14:10

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 2 down vote accepted

As the site will be static is it possible to deploy all my HMTL files and images into a simple blob storage container and create a CNAME in our DNS record to point the sub-domain to this location?

Yes, that is possible, and personally I think it is one of the cheapest solution for a static website. I have setup several websites in Azure Blob the way you have described.

Please note that each file in Azure Blob must be inside a container. The container name becomes a part of the file URL. Say, your blob DNS is yourblob.com, container name is foo and file name is bar.html then the URL to the file is http://yourblob.com/foo/bar.html

It is also possible to create default container $root which name will not be visible in URL. Say, for the same blob DNS as above, container $root and page name page.html the page URL will be as follows: http://yourblob.url/page.html

Although having a static website in Azure Blob seems to be very simple and cheap, there is one drawback of that solution though. As you have no control on file downloads, someone can download large amount of data from your website, which will affect your bills.

Example: download of 1MB every 3 seconds will generate about 1GB of bandwidth per hour. Continues download would give you about $2.28 per day of additional cost (~ $70 per month). With that in mind suddenly the cheap solution is not that cheap. And I have seen couple question about that issue on SO.

I hope that will help.

share|improve this answer
Thanks Tom, it did occur to me that all the html files will end up in a folder that will become part of the URI. The $root suggestion is very helpful! I will only be hosting a maximum of say 100 html files with minimal graphics, so should be fine...it's a good point though, one that never crossed my mind! – QF_Developer Feb 21 at 22:30
@QF_Developer, I am very happy I could help. Website with HTML files and minimal graphics should not be that vulnerable for that kind of attack. There is one question I manage to find quickly: stackoverflow.com/questions/14950711/…. Different Azure service though but the same issue I described. – Tom Feb 21 at 22:36
Another little quirk I have come across (not sure if there is a solution here?). The uri calls are case sensitive, get the case wrong and Azure throws back The specified blob does not exist. It turns out not to be a big problem for me, but just a warning to anyone else looking to serve html on blob storage. – QF_Developer Feb 23 at 16:10
The fact that URLs are case sensitive is not specific to Azure. According to W3 URLs should always be considered case sensitive: stackoverflow.com/a/7996997/1916110. BTW, Googlebot also assumes that URLs are case sensitive (which can sometimes affect SEO). – Tom Feb 23 at 16:27

Good answer by @Tom. Let me throw in one caveat: Blob storage will not provide you with a default page. That is, if you had a default.html page, you'd need to visit http://yourblobstorage.com/default.html. You could not just visit http://yourblobstorage.com.

Having said this: You should look at Windows Azure Web Sites. While the free tier offers 165MB outbound bandwidth per day, you can move your content to blob storage, which is metered separately. With Web Sites, you now have a very easy way to push a site up, whether with static content or, say, asp.net (and very quickly, along with git / ftp / bitbucket / tfs integration). And then you can push separate static content to blob storage very easily as well. You can use Web Sites to provide your landing page, authentication (if needed), and any type of programmatic work you might need. Then rely on blobs to house your static content.

Taking this one step further: Let's say you do decide to implement some type of security to filter who gets to see data. You can store static content in private blobs. Let's say one of these items is a sensitive document. With Web Sites in place, you can have a url that directs to aWeb Sites-hosted aspx page (vs a static html page) that determines whether a user can download a document and, if so, create a Shared Access Signature on a private blob, which allows you to expose it to the user with a simple anchor tag to the blob.

share|improve this answer
Thanks for the input David. I did think about Azure Websites but I've already built a Content Management system that runs from our core application for writing the htmls into the Blob directory (for this new help system) and if I was to deploy this as a website I think I would need to move all the CM logic with it, which is a bigger job. By using a blob container I can just rewire the CM system to read and write the html files in the container. It's only a small part of a larger help system so it won't receive a great deal of traffic, otherwise I would explore other options. – QF_Developer Feb 22 at 10:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.