DEV Community

Thanh Ba Nguyen
Thanh Ba Nguyen

Posted on

Host your website on Azure, for free

This article was originally posted on my personal notes.

Introduction

Azure is a cloud computing platform operated by Microsoft. Azure offers a range of services that are free for the initial 12 months, as well as a selection of always free services[*]. This post explores those services that are always free at Azure.

Web application hosting

Azure offers quite a few free services[*] that can be used to host your website:

  • Azure App Service: free with F1 tier, 1Gb RAM, 1Gb storage, 10 web apps, 60 CPU-minutes per day. Support Windows and Linux, the website can be deployed as a binary package or container.
  • Azure Container Apps: monthly free of 180,000 vCPU-seconds, 360,000 GiB Memory-seconds and 2 million requests with Consumption plan. The website can be deployed as a container.
  • Azure Functions: monthly free of 1 million requests and 400,000 GB resource-seconds with Consumption plan. The website can be deployed as a binary packages or container.

➡️ While Azure Functions may not be the optimal choice for hosting a website, it remains well-suited for web API applications.

⚠️ The Consumption plan does not support the deployment of applications as containers.

⚠️ A storage account is created by default with each Functions app. The storage account is not included in the free grant. However, the associated cost is relatively small.

Database

In scenarios where your website requires database storage, Azure allows one free Cosmos DB account per subsciprtion, which includes 1000 RU/s and 25Gb storage capacity at no cost.

Azure Cosmos DB is a NoSQL service available on Azure. It provides compatibility with MongoDB clients, making it a convenient drop-in replacement if your website relies on MongoDB.

For further information about the free tier of Cosmos DB, please refer to this link.

Other components

  • Bandwidth: Azure does not charge ingress data and the first 100Gb of egress data monthly is free[*].

It is important to note that the free 100GB egress data allowance is calculated based on all workloads deployed within the Azure subscription, not per individual application.

  • Docker Hub: if your website is deployed as a container, it will require a service to host images. The Azure Container Registry service offers 100GB of free storage for the first 12 months[*]. However, since this post focuses on always free services, we will exclude Azure Container Registry from the list. As an alternative, you can utilize Docker Hub for the same purpose[-].

  • Custom domain: once your website is deployed on an Azure service, users can access it through a URL like https://mpn.whiteisland-8603b684.australiaeast.azurecontainerapps.io. However, this URL may not appear visually appealing. Fortunately, several Azure services enable you to associate a custom domain with your website at no cost. For instance, your website hosted on Azure can have a URL such as https://mpn.btnguyen2k.me. Please note that you will need to purchase the domain name separately.

Before we wrap up

Azure demonstrates its generosity by providing a range of always free services that are well-suited for hosting personal websites or hobby projects. Additionally, you have the option to leverage free services offered by other providers, including:

  • The MongoDB free tier available through MongoDB Atlas[-], which offers 500GB of free storage, can be a replacement for Azure Cosmos DB.
  • CloudFlare's free tier[-] can be used to cache your website content and reduce bandwidth consumption.

[*] For a completed list of Azure's free services, refer to this link. Kindly be aware that Azure retains the right to modify their policies and offerings at any given time. The information provided in this post is accurate as of its publication date and is intended for informational purposes only.

[**] Azure Cosmos DB automatically make backups of your database and retains them free of charge for a period of 7 days. However, additional costs may apply if you wish to retain the backups for an extended duration.

[-] Kindly be aware that service providers retains the right to modify their policies and offerings at any given time. The information provided in this post is accurate as of its publication date and is intended for informational purposes only.

Top comments (0)