<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tufail Mohammed</title>
    <description>The latest articles on DEV Community by Tufail Mohammed (@tufail_mohammed_822ce7383).</description>
    <link>https://dev.to/tufail_mohammed_822ce7383</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3727840%2F941245ca-af72-4947-86df-c327978536d6.png</url>
      <title>DEV Community: Tufail Mohammed</title>
      <link>https://dev.to/tufail_mohammed_822ce7383</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tufail_mohammed_822ce7383"/>
    <language>en</language>
    <item>
      <title>🚀 My Hands-On Experience Deploying Applications on Azure cloud</title>
      <dc:creator>Tufail Mohammed</dc:creator>
      <pubDate>Sun, 08 Mar 2026 16:51:09 +0000</pubDate>
      <link>https://dev.to/tufail_mohammed_822ce7383/my-hands-on-experience-deploying-applications-on-azure-cloud-o2n</link>
      <guid>https://dev.to/tufail_mohammed_822ce7383/my-hands-on-experience-deploying-applications-on-azure-cloud-o2n</guid>
      <description>&lt;p&gt;Recently I completed two practical Azure projects that helped me understand how real-world cloud infrastructure and application deployments work.&lt;/p&gt;

&lt;p&gt;Instead of only learning theory, I built the architecture step by step using &lt;strong&gt;Microsoft Azure&lt;/strong&gt;, Linux, and web technologies.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧱 Project 1: Three-Tier Architecture with Load Balancer
&lt;/h2&gt;

&lt;p&gt;In this project, I designed a simple &lt;strong&gt;three-tier network architecture&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Network Design&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;VNet: &lt;code&gt;10.0.0.0/16&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Web Subnet: &lt;code&gt;10.0.1.0/24&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;App Subnet: &lt;code&gt;10.0.2.0/25&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;DB Subnet: &lt;code&gt;10.0.3.0/26&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This separation helps improve &lt;strong&gt;security, scalability, and network organization&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I deployed a web server VM running &lt;strong&gt;NGINX&lt;/strong&gt; and placed it behind an &lt;strong&gt;Azure Load Balancer&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The load balancer handled:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend public IP&lt;/li&gt;
&lt;li&gt;Backend pool with the VM&lt;/li&gt;
&lt;li&gt;Health probe on port 80&lt;/li&gt;
&lt;li&gt;Load balancing rule for HTTP traffic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When I accessed the Load Balancer IP, it correctly routed traffic to the NGINX server.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚛️ Project 2: Deploying a React App on an Azure VM
&lt;/h2&gt;

&lt;p&gt;The second project focused on deploying a frontend application in a production-style setup.&lt;/p&gt;

&lt;p&gt;I provisioned an Ubuntu VM and installed the required tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Node.js&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;npm&lt;/li&gt;
&lt;li&gt;Git&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;NGINX&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then I cloned the React repository and built the application:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/pravinmishraaws/my-react-app.git
npm install
npm run build
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The production build was served using &lt;strong&gt;NGINX&lt;/strong&gt; with proper &lt;strong&gt;SPA routing configuration&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;After deployment, the application was accessible directly through the VM’s public IP.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 Key Things I Learned
&lt;/h2&gt;

&lt;p&gt;Through these projects I gained hands-on experience with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Azure Virtual Networks and subnet design&lt;/li&gt;
&lt;li&gt;Network Security Groups&lt;/li&gt;
&lt;li&gt;Load balancing concepts&lt;/li&gt;
&lt;li&gt;Deploying React apps on Linux servers&lt;/li&gt;
&lt;li&gt;Using NGINX to serve production builds&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🏁 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;These projects helped me understand how &lt;strong&gt;cloud networking and application deployment work together&lt;/strong&gt; in real environments.&lt;/p&gt;

&lt;p&gt;Next, I’m planning to explore:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Docker containerization&lt;/li&gt;
&lt;li&gt;CI/CD pipelines&lt;/li&gt;
&lt;li&gt;Infrastructure as Code (Terraform)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're also learning &lt;strong&gt;Cloud or DevOps&lt;/strong&gt;, hands-on projects like these are one of the best ways to build real skills. 🚀&lt;/p&gt;

&lt;p&gt;P.S. This post is part of the DevOps Micro Internship (DMI) Cohort 2 by Pravin Mishra. You can start your DevOps journey by joining this Discord community (&lt;a href="https://lnkd.in/gmpZfEZC" rel="noopener noreferrer"&gt;https://lnkd.in/gmpZfEZC&lt;/a&gt;)&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>azure</category>
      <category>cloud</category>
      <category>networking</category>
    </item>
    <item>
      <title>🚀 Deploying a Static Website on Nginx (Beginner DevOps Project)</title>
      <dc:creator>Tufail Mohammed</dc:creator>
      <pubDate>Fri, 23 Jan 2026 07:26:42 +0000</pubDate>
      <link>https://dev.to/tufail_mohammed_822ce7383/deploying-a-static-website-on-nginx-beginner-devops-project-4gcf</link>
      <guid>https://dev.to/tufail_mohammed_822ce7383/deploying-a-static-website-on-nginx-beginner-devops-project-4gcf</guid>
      <description>&lt;p&gt;As part of my DevOps learning journey, I successfully deployed a static website on an Ubuntu VM using Nginx. This project helped me understand real-world web hosting fundamentals.&lt;/p&gt;

&lt;p&gt;🛠️ Tech Stack&lt;/p&gt;

&lt;p&gt;Ubuntu Linux 🐧&lt;/p&gt;

&lt;p&gt;Nginx 🌐&lt;/p&gt;

&lt;p&gt;HTML, CSS, Images 🎨&lt;/p&gt;

&lt;p&gt;🔧 What I Did&lt;/p&gt;

&lt;p&gt;Installed and enabled Nginx&lt;/p&gt;

&lt;p&gt;Deployed website files to /var/www/html&lt;/p&gt;

&lt;p&gt;Set correct permissions and ownership&lt;/p&gt;

&lt;p&gt;Validated configuration and service health&lt;/p&gt;

&lt;p&gt;sudo nginx -t&lt;br&gt;
curl -I http://&lt;/p&gt;

&lt;p&gt;A 200 OK response ✅ confirmed the site was live.&lt;/p&gt;

&lt;p&gt;🔍 DevOps Checks&lt;/p&gt;

&lt;p&gt;Verified access and error logs 📄&lt;/p&gt;

&lt;p&gt;Ensured Nginx starts on boot 🔁&lt;/p&gt;

&lt;p&gt;Confirmed availability after restarts&lt;/p&gt;

&lt;p&gt;📌 Key Takeaways&lt;/p&gt;

&lt;p&gt;Nginx is fast and reliable for static content ⚡&lt;/p&gt;

&lt;p&gt;Linux permissions directly impact deployments 🔐&lt;/p&gt;

&lt;p&gt;Logs and HTTP codes are essential for troubleshooting 🧠&lt;/p&gt;

&lt;p&gt;This small project strengthened my DevOps fundamentals. More hands-on labs coming soon! 🚀&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
