๐ง๐ต๐ถ๐ ๐๐ ๐๐ผ๐ ๐ ๐๐ผ๐๐๐ฒ๐ฑ ๐ ๐๐ฟ๐ฒ๐ฒ ๐ช๐ฒ๐ฏ๐๐ถ๐๐ฒ ๐ข๐ป ๐๐๐จ๐ฟ๐ฒ ๐๐น๐ผ๐ฏ ๐ฆ๐๐ผ๐ฟ๐ฎ๐ด๐ฒ You want to host a website without paying for a web server or dealing with complex configurations. Azure Blob Storage has a feature called Static Website Hosting. This feature lets you serve HTML, CSS, and JavaScript files directly from a storage container.
Here's how I did it:
- Downloaded a free HTML template from Tooplate
- Extracted the zip file and found the necessary files
- Opened the Azure Portal and searched for Resource groups
- Created a new storage account and enabled anonymous access
- Enabled static website hosting and set the index document name
- Uploaded all website files to the $web container
- Copied the URL and opened the live website
You can use Azure Blob Storage to host your website for free. This approach took less than 15 minutes and didn't require setting up a web server or configuring SSL certificates.
Source: https://dev.to/4thman/how-i-hosted-a-free-website-on-azure-blob-storage-no-server-needed-188