
🚀 My Hands-On Experience Deploying Applications on Azure cloud
Recently I completed two practical Azure projects that helped me understand how real-world cloud infrastructure and application deployments work. Instead of only learning theory, I built the architecture step by step using Microsoft Azure , Linux, and web technologies. 🧱 Project 1: Three-Tier Architecture with Load Balancer In this project, I designed a simple three-tier network architecture . Network Design VNet: 10.0.0.0/16 Web Subnet: 10.0.1.0/24 App Subnet: 10.0.2.0/25 DB Subnet: 10.0.3.0/26 This separation helps improve security, scalability, and network organization . I deployed a web server VM running NGINX and placed it behind an Azure Load Balancer . The load balancer handled: Frontend public IP Backend pool with the VM Health probe on port 80 Load balancing rule for HTTP traffic When I accessed the Load Balancer IP, it correctly routed traffic to the NGINX server. ⚛️ Project 2: Deploying a React App on an Azure VM The second project focused on deploying a frontend application
Continue reading on Dev.to
Opens in a new tab




