Deploying Blob Storage for a Public website on Azure
The article provides a step-by-step tutorial on deploying Azure Blob Storage for a public website, covering setup, configuration, and data protection features. It explains how to create a storage account with high availability and enable anonymous access for public content. The guide also demonstrates enabling soft delete and blob versioning to protect against accidental data loss.
- ▪Blob Storage is used for storing large amounts of unstructured data such as text, images, and videos.
- ▪The tutorial walks through creating a storage account with read-access geo-redundant settings for high availability.
- ▪Anonymous read access is configured to allow public access to website content without authentication.
- ▪Soft delete is enabled for 21 days to allow recovery of accidentally deleted blobs.
- ▪Blob versioning is configured to track and manage different versions of stored documents.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2016684) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Oluwaloseyi Oluwatofunmi Emmanuel Posted on May 2 Deploying Blob Storage for a Public website on Azure #azure #devops #cloud #tutorial Table of Content What is Blob Storage? Create a storage account with high availability. Create a blob storage container with anonymous read access Practice uploading files and testing access.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).