<?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: Sakshi More</title>
    <description>The latest articles on DEV Community by Sakshi More (@sakshi_more_20).</description>
    <link>https://dev.to/sakshi_more_20</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%2F2914569%2F458b220e-3664-44a3-8b4b-12de4bc643d8.png</url>
      <title>DEV Community: Sakshi More</title>
      <link>https://dev.to/sakshi_more_20</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sakshi_more_20"/>
    <language>en</language>
    <item>
      <title>Day 3 — Linux Permissions for DevOps (AWS EC2) #40 days</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Sat, 13 Dec 2025 18:14:18 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/day-3-linux-permissions-for-devops-aws-ec2-29m7</link>
      <guid>https://dev.to/sakshi_more_20/day-3-linux-permissions-for-devops-aws-ec2-29m7</guid>
      <description>&lt;p&gt;Today, on Day 3 of my 40-day AWS DevOps challenge, I focused on understanding Linux permissions, which are critical for real-world DevOps work on EC2.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned Today
&lt;/h2&gt;

&lt;p&gt;1️⃣ Linux File Permissions&lt;/p&gt;

&lt;p&gt;Read (r)&lt;/p&gt;

&lt;p&gt;Write (w)&lt;/p&gt;

&lt;p&gt;Execute (x)&lt;/p&gt;

&lt;p&gt;Permission groups: Owner | Group | Others&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;-rwxr-xr--&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;chmod — Change Permissions&lt;br&gt;
Used to allow or restrict access to files and scripts.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;chmod 755 script.sh&lt;br&gt;
chmod +x deploy.sh&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;chown — Change Ownership&lt;br&gt;
Used when fixing permission issues after deployments.&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;sudo chown ec2-user:ec2-user app.log&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;_&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Permissions Matter in DevOps
&lt;/h2&gt;

&lt;p&gt;_&lt;br&gt;
Scripts won’t run without execute permission&lt;/p&gt;

&lt;p&gt;Web servers fail due to wrong ownership&lt;/p&gt;

&lt;p&gt;CI/CD pipelines break due to access issues&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Understood
&lt;/h2&gt;

&lt;p&gt;Permission issues are very common in EC2&lt;/p&gt;

&lt;p&gt;DevOps engineers solve many problems using chmod and chown&lt;/p&gt;

&lt;p&gt;Understanding permissions saves a lot of debugging time&lt;/p&gt;

&lt;p&gt;Practices :&lt;br&gt;
I have also solved questions using ChatGPT &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>devops</category>
      <category>aws</category>
      <category>devopsdailybysakshimore</category>
    </item>
    <item>
      <title>Day 2 — Beginning My 40 Days AWS DevOps Journey</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Thu, 11 Dec 2025 19:05:00 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/day-2-beginning-my-40-days-aws-devops-journey-2g9l</link>
      <guid>https://dev.to/sakshi_more_20/day-2-beginning-my-40-days-aws-devops-journey-2g9l</guid>
      <description>&lt;p&gt;Today was Day 2 of my 40-day AWS + DevOps challenge.&lt;br&gt;
I focused on strengthening Linux fundamentals because every DevOps job requires fast command-line skills — especially on EC2.&lt;/p&gt;

&lt;p&gt;Here’s what I practiced today:&lt;/p&gt;

&lt;p&gt;** File &amp;amp; Permissions **&lt;/p&gt;

&lt;p&gt;chmod – make scripts executable&lt;br&gt;
chown – fix file ownership&lt;br&gt;
df -h – check disk space&lt;br&gt;
du -sh – check folder size&lt;/p&gt;

&lt;p&gt;** Processes &amp;amp; Services **&lt;/p&gt;

&lt;p&gt;ps aux – list running processes&lt;br&gt;
top – live CPU/RAM&lt;br&gt;
systemctl status/start/restart – manage services (nginx, docker)&lt;/p&gt;

&lt;p&gt;** Networking **&lt;/p&gt;

&lt;p&gt;curl – check if a service/website is responding&lt;br&gt;
ss -tulnp – check open ports&lt;/p&gt;

&lt;p&gt;** Logs **&lt;/p&gt;

&lt;p&gt;/var/log/ – main log directory&lt;br&gt;
tail -f – watch logs in real time&lt;br&gt;
journalctl -u  – check service logs  {This is for aws linux 2023}&lt;/p&gt;

&lt;p&gt;** Pipes **&lt;br&gt;
ps aux | grep nginx&lt;br&gt;
tail -f messages | grep error&lt;/p&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>devopsdailybysakshimore</category>
      <category>beginners</category>
    </item>
    <item>
      <title>DAY1 AWS DevOps -beginner</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Wed, 10 Dec 2025 20:31:25 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/day1-aws-devops-beginner-nl</link>
      <guid>https://dev.to/sakshi_more_20/day1-aws-devops-beginner-nl</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/sakshi_more_20" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2914569%2F458b220e-3664-44a3-8b4b-12de4bc643d8.png" alt="sakshi_more_20"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/sakshi_more_20/day-1-beginning-my-40-days-aws-devops-journey-4cdj" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Day 1 — Beginning My 40 Days AWS DevOps Journey&lt;/h2&gt;
      &lt;h3&gt;Sakshi More ・ Dec 10&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#devopsdailybysakshimore&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#aws&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#devops&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>devopsdailybysakshimore</category>
      <category>aws</category>
      <category>devops</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Day 1 — Beginning My 40 Days AWS DevOps Journey</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Wed, 10 Dec 2025 20:15:29 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/day-1-beginning-my-40-days-aws-devops-journey-4cdj</link>
      <guid>https://dev.to/sakshi_more_20/day-1-beginning-my-40-days-aws-devops-journey-4cdj</guid>
      <description>&lt;p&gt;** Day 1 — Beginning My 40 Days AWS DevOps Journey&lt;br&gt;
**&lt;br&gt;
✅ What I Did on Day 1&lt;/p&gt;

&lt;p&gt;I focused on learning and practicing Linux basics using my Amazon Linux EC2 instance.&lt;/p&gt;

&lt;p&gt;Commands I practiced:&lt;/p&gt;

&lt;p&gt;Navigation: cd, pwd, ls&lt;/p&gt;

&lt;p&gt;File/Folder: &lt;strong&gt;mkdir, touch, rm, cp, mv&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Viewing: &lt;strong&gt;cat, nano, tail, head&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Searching: &lt;strong&gt;grep, find&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Networking: &lt;strong&gt;ip a, ping&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;These are essential for any DevOps engineer, and practicing them on &lt;em&gt;EC2 made everything feel more real and practical&lt;/em&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Linux + AWS Basic Commands (Beginner Notes)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  1. Navigation Commands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;cd&lt;/strong&gt; – Change directory&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;pwd&lt;/strong&gt; – Show current location&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ls&lt;/strong&gt; – List files and directories&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2. File/Folder Commands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;mkdir&lt;/strong&gt; – Create a new directory&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;touch&lt;/strong&gt; – Create a new empty file&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;rm&lt;/strong&gt; – Remove file&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;cp&lt;/strong&gt; – Copy file or folder&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;mv&lt;/strong&gt; – Move or rename file/folder&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3. Viewing Commands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;cat&lt;/strong&gt; – View file content&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;nano&lt;/strong&gt; – Edit file&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;tail&lt;/strong&gt; – View last lines of a file&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;head&lt;/strong&gt; – View first lines of a file&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  4. Searching Commands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;grep&lt;/strong&gt; – Search a keyword inside files&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;find&lt;/strong&gt; – Search files or folders by name&lt;/p&gt;
&lt;h2&gt;
  
  
  5. Networking Commands
&lt;/h2&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;ip a&lt;/strong&gt; – Show IP details&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;ping&lt;/strong&gt; – Test internet or server connection&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These commands are the fundamental building blocks for AWS EC2 and DevOps&lt;/p&gt;

</description>
      <category>devopsdailybysakshimore</category>
      <category>aws</category>
      <category>devops</category>
      <category>beginners</category>
    </item>
    <item>
      <title>40 Days AWS + DevOps Challenge (Beginner Job Ready)</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Wed, 10 Dec 2025 19:59:43 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/40-days-aws-devops-challenge-beginner-job-ready-jmg</link>
      <guid>https://dev.to/sakshi_more_20/40-days-aws-devops-challenge-beginner-job-ready-jmg</guid>
      <description>&lt;p&gt;Hi! I'm Sakshi, an introverted girl taking a bold step toward my career.&lt;br&gt;
Today, I begin my 40 Days AWS DevOps Challenge — a commitment to consistency, discipline, and growth.&lt;/p&gt;

&lt;p&gt;This journey is my way of becoming job-ready and building confidence in my technical skills.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Why I Started This Challenge&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I want to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Build strong Linux fundamentals&lt;/li&gt;
&lt;li&gt;Learn AWS services deeply&lt;/li&gt;
&lt;li&gt;Understand DevOps tools&lt;/li&gt;
&lt;li&gt;Become ready for my tech job&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;For a long time, I felt stuck and uncertain.&lt;br&gt;
But today, I choose progress over fear — one day at a time.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>devopsdailybysakshimore</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Mastering the 3-Tier Web Architecture: A Dev's Guide</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Fri, 28 Mar 2025 17:33:42 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/mastering-the-3-tier-web-architecture-a-devs-guide-4e2a</link>
      <guid>https://dev.to/sakshi_more_20/mastering-the-3-tier-web-architecture-a-devs-guide-4e2a</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6ld0folwveryz28gq4s1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6ld0folwveryz28gq4s1.png" alt=" " width="800" height="363"&gt;&lt;/a&gt;&lt;br&gt;
Mastering the 3-Tier Web Architecture: A Dev's Guide&lt;/p&gt;

&lt;p&gt;In the world of web applications, efficiency, scalability, and security are crucial. One of the most commonly used architectural patterns to achieve these goals is the 3-Tier Web Architecture. If you're diving into DevOps, cloud computing, or backend development, understanding this architecture is a must. Let's break it down in a way that makes sense.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What is 3-Tier Web Architecture?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Think of the 3-tier architecture as a well-structured apartment complex. Each floor has a specific purpose, ensuring smooth operations without interference. In a web application, these tiers are:&lt;/p&gt;

&lt;p&gt;Presentation Tier (Client Layer) – This is the front-facing part of the application, where users interact. It includes web pages, mobile applications, or any UI framework. Technologies like HTML, CSS, JavaScript, React, and Angular rule this layer.&lt;/p&gt;

&lt;p&gt;Application Tier (Logic Layer) – The brain of the architecture! This is where all the business logic happens, processing user requests and making decisions. It consists of backend technologies like Django, Node.js, Spring Boot, Flask, or Express.js.&lt;/p&gt;

&lt;p&gt;Data Tier (Database Layer) – The foundation where all the data resides. It handles storage, retrieval, and management using relational (MySQL, PostgreSQL) or NoSQL (MongoDB, DynamoDB) databases.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Why Do We Use It?
Adopting a 3-tier architecture isn’t just about keeping things neat; it offers several advantages:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Scalability: Since the tiers are independent, you can scale each component separately. If there's a surge in user traffic, scale the frontend and backend without overloading the database.&lt;/p&gt;

&lt;p&gt;Security: Each tier can have its own security measures, ensuring that breaches in one layer don’t compromise the entire system.&lt;/p&gt;

&lt;p&gt;Maintainability: Modular design means making updates or debugging is easier, as changes in one layer don’t disrupt the others.&lt;/p&gt;

&lt;p&gt;Flexibility: Developers can use different technologies for each tier without affecting the entire application.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How It Works in a Real-World Scenario&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Imagine you’re ordering food from an online platform:&lt;/p&gt;

&lt;p&gt;The Presentation Tier displays the restaurant listings and a search bar.&lt;/p&gt;

&lt;p&gt;When you select a dish and place an order, the Application Tier processes the request, verifies stock availability, and initiates payment processing.&lt;/p&gt;

&lt;p&gt;The Data Tier stores order history, user information, and restaurant details, fetching data whenever required.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Implementing 3-Tier Architecture on AWS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're working in the cloud, AWS offers services to easily implement this model:&lt;/p&gt;

&lt;p&gt;Presentation Tier: Amazon S3 (static web hosting), AWS Amplify, CloudFront.&lt;/p&gt;

&lt;p&gt;Application Tier: EC2 instances, AWS Lambda, Elastic Beanstalk.&lt;/p&gt;

&lt;p&gt;Data Tier: Amazon RDS, DynamoDB, S3 for backups.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;My Project: Building a 3-Tier Web Application&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m currently working on a project where I’m implementing a 3-Tier Web Architecture using AWS services. This hands-on experience is helping me understand how to structure applications efficiently, ensuring scalability and security. Stay tuned for more updates on my journey!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Final Thoughts
The 3-tier architecture isn’t just a concept; it’s a backbone for scalable and secure applications. Whether you're an aspiring DevOps engineer or a full-stack developer, mastering this model will set you apart in the tech industry. So, the next time you build an application, consider structuring it in tiers—it might just be the key to a robust and efficient system!&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>devplusplus</category>
      <category>awschallenge</category>
      <category>devops</category>
      <category>aws</category>
    </item>
    <item>
      <title>AWS Networking Services and Use-Cases</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Sat, 08 Mar 2025 07:01:11 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/aws-networking-services-and-use-cases-42mo</link>
      <guid>https://dev.to/sakshi_more_20/aws-networking-services-and-use-cases-42mo</guid>
      <description>&lt;p&gt;&lt;strong&gt;AWS networking&lt;/strong&gt; is a critical component of Amazon Web Services (AWS), enabling users to create secure, scalable, and reliable cloud infrastructure. It provides various services and features to connect, secure, and manage traffic across AWS resources. Here's a comprehensive breakdown of AWS networking:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Amazon Virtual Private Cloud (VPC)
VPC is a logically isolated section of AWS that enables you to launch AWS resources in a virtual network you define.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Subnets: VPCs are divided into subnets, which can be public (accessible from the internet) or private (isolated from the internet).&lt;/p&gt;

&lt;p&gt;Route Tables: Control the traffic routing within the VPC and between the VPC and external networks. NAT&lt;/p&gt;

&lt;p&gt;Gateways: Allow private instances to access the internet without being exposed to inbound traffic from the internet.&lt;/p&gt;

&lt;p&gt;Internet Gateways (IGW): Enable public instances to access the internet. VPC Peering: Connects two VPCs to allow traffic between them. VPC Endpoints: Allow connections to AWS services without using the internet, enhancing security.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Amazon Elastic Load Balancer (ELB)
ELB automatically distributes incoming application traffic across multiple targets, such as EC2 instances, containers, and IP addresses.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Types of ELB:&lt;br&gt;
Application Load Balancer (ALB): Best for HTTP/HTTPS traffic and Layer 7 routing.&lt;/p&gt;

&lt;p&gt;Network Load Balancer (NLB): Handles large amounts of TCP and UDP traffic, working at Layer 4.&lt;/p&gt;

&lt;p&gt;Gateway Load Balancer (GWLB): Deploys and manages third-party virtual appliances (e.g., firewalls, intrusion detection systems).&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Amazon Route 53
Route 53 is a scalable Domain Name System (DNS) web service for translating human-readable domain names into IP addresses.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Routing Policies:&lt;br&gt;
Simple Routing: Basic DNS resolution.&lt;/p&gt;

&lt;p&gt;Weighted Routing: Split traffic across different resources based on weights.&lt;/p&gt;

&lt;p&gt;Latency-Based Routing: Route users to the endpoint with the lowest latency.&lt;/p&gt;

&lt;p&gt;Failover Routing: Automatically route traffic to a standby resource when the primary resource fails.&lt;/p&gt;

&lt;p&gt;Geolocation Routing: Route users based on their geographical location.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;AWS Direct Connect&lt;br&gt;
Direct Connect provides a dedicated network connection from your on-premises environment to AWS. It offers private, high-bandwidth connections that bypass the public internet, providing lower latency and greater security.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Amazon CloudFront&lt;br&gt;
CloudFront is a global Content Delivery Network (CDN) service that securely delivers data, videos, applications, and APIs to users worldwide with low latency and high transfer speeds. It integrates with services like S3, EC2, and Lambda Edge. It uses edge locations to cache content closer to users for faster access.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Transit Gateway&lt;br&gt;
Transit Gateway connects VPCs and on-premises networks through a central hub, simplifying network architecture. It supports multicast, VPN attachments, and inter-region peering. Transit Gateway helps scale network infrastructure and simplifies routing and security policies.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS VPN (Virtual Private Network)&lt;br&gt;
Site-to-Site VPN: Connects on-premises networks to AWS VPCs using IPsec tunnels. Client VPN: Provides secure access for individual users to your AWS network.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Security Groups and Network Access Control Lists (NACL)&lt;br&gt;
Security Groups: Virtual firewalls that control inbound and outbound traffic at the instance level. They are stateful, meaning changes in outbound rules automatically allow return traffic for inbound requests. NACLs: Stateless firewalls that control traffic at the subnet level. They require explicit rules for both inbound and outbound traffic.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Elastic IP (EIP)&lt;br&gt;
Elastic IP is a static, public IP address that you can allocate to your AWS account and associate with your EC2 instances or other resources. It helps ensure that your resource remains reachable even if the underlying instance is stopped and restarted.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS PrivateLink&lt;br&gt;
PrivateLink allows you to access AWS services and third-party applications in a VPC securely without exposing your traffic to the internet. It uses VPC endpoints to provide secure connectivity to services.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Amazon Global Accelerator&lt;br&gt;
Global Accelerator uses AWS's global network to improve the availability and performance of your applications by directing traffic to optimal endpoints.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Wavelength&lt;br&gt;
Wavelength extends AWS infrastructure to 5G networks for ultra-low latency applications. It integrates AWS compute and storage services with telecommunications provider networks.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS App Mesh&lt;br&gt;
App Mesh provides application-level networking for microservices. It simplifies service discovery, traffic management, and monitoring of microservices across your infrastructure.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Elastic Network Interfaces (ENI)&lt;br&gt;
ENI is a virtual network interface that you can attach to an instance in a VPC. You can attach multiple ENIs to an EC2 instance, giving it multiple IP addresses.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Elastic Fabric Adapter (EFA)&lt;br&gt;
EFA is a network interface for EC2 instances that enables low-latency communication for high-performance computing (HPC) and machine learning workloads.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Network Firewall&lt;br&gt;
Network Firewall is a managed service that provides network protections, including traffic filtering and threat prevention, in your VPCs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Outposts&lt;br&gt;
Outposts extend AWS infrastructure, services, APIs, and tools to your on-premises environment, allowing for hybrid cloud setups.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Virtual Private Network (VPN)&lt;br&gt;
AWS Client VPN: Enables secure access to AWS resources from client devices. AWS Site-to-Site VPN: Connects your on-premises or remote networks to AWS using IPsec VPN tunnels.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Common Use Cases for AWS Networking:&lt;br&gt;
Hybrid Cloud Architecture: Use AWS Direct Connect, VPN, or Transit Gateway to create a hybrid architecture that connects on-premises data centers to AWS.&lt;/p&gt;

&lt;p&gt;Content Delivery and Caching: Use CloudFront and Route 53 to deliver content with low latency to global users. Microservices Networking: App Mesh enables service discovery, traffic management, and monitoring for microservices architectures.&lt;/p&gt;

&lt;p&gt;Security-First Networking: To create secure network environments, use VPCs, security groups, NACLs, the AWS network firewall, and PrivateLink.&lt;/p&gt;

&lt;p&gt;High Availability and Fault Tolerance: Leverage ELB, Route 53, and Global Accelerator for reliable and high-performing applications across multiple regions.&lt;/p&gt;

&lt;p&gt;Conclusion:&lt;/p&gt;

&lt;p&gt;AWS networking services offer flexibility, scalability, and robust security features to support different use cases, from small-scale applications to enterprise-level systems. Each service can be integrated to create a reliable and secure network infrastructure in the AWS cloud.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Hosting a Static Website with AWS S3 &amp; CloudFront – A Quick Demo!</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Fri, 07 Mar 2025 07:51:16 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/hosting-a-static-website-with-aws-s3-cloudfront-a-quick-demo-3jke</link>
      <guid>https://dev.to/sakshi_more_20/hosting-a-static-website-with-aws-s3-cloudfront-a-quick-demo-3jke</guid>
      <description>&lt;h1&gt;
  
  
  🚀 Hosting a Static Website with AWS S3 &amp;amp; CloudFront – A Quick Demo!
&lt;/h1&gt;

&lt;p&gt;Hey Devs! 👋  &lt;/p&gt;

&lt;p&gt;I recently worked on a project where I &lt;strong&gt;hosted a static website&lt;/strong&gt; using &lt;strong&gt;AWS S3 &amp;amp; CloudFront&lt;/strong&gt;, and I wanted to share my experience with you all! 🎥✨  &lt;/p&gt;

&lt;h2&gt;
  
  
  🎯 What’s Covered in the Video?
&lt;/h2&gt;

&lt;p&gt;✅ Setting up an &lt;strong&gt;S3 bucket&lt;/strong&gt; for static website hosting&lt;br&gt;&lt;br&gt;
✅ Configuring &lt;strong&gt;CloudFront&lt;/strong&gt; for content delivery&lt;br&gt;&lt;br&gt;
✅ Handling &lt;strong&gt;permissions &amp;amp; caching&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
✅ Final &lt;strong&gt;website demo&lt;/strong&gt;  &lt;/p&gt;

&lt;p&gt;📹 Check out the video here: [ &lt;a href="https://www.linkedin.com/posts/sakshismore_webdevelopment-cloudcomputing-aws-activity-7267463949690785792-BeEW?utm_source=social_share_send&amp;amp;utm_medium=member_desktop_web&amp;amp;rcm=ACoAADjlKdMB2keuJuuV9LfHcFuuyzGdPVKbna8" rel="noopener noreferrer"&gt;https://www.linkedin.com/posts/sakshismore_webdevelopment-cloudcomputing-aws-activity-7267463949690785792-BeEW?utm_source=social_share_send&amp;amp;utm_medium=member_desktop_web&amp;amp;rcm=ACoAADjlKdMB2keuJuuV9LfHcFuuyzGdPVKbna8&lt;/a&gt; ]  &lt;/p&gt;

&lt;p&gt;⚡ Challenges Faced:&lt;br&gt;
🔹 Setting up correct bucket policies&lt;br&gt;
🔹 Configuring CloudFront caching &amp;amp; invalidations&lt;br&gt;&lt;br&gt;
🔹 Handling HTTPS &amp;amp; security settings&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.tourl"&gt;&lt;/a&gt; 🚀 Key Learnings:&lt;br&gt;
💡 S3 &amp;amp; CloudFront make static website hosting super fast &amp;amp; scalable! &lt;br&gt;
💡 Caching strategies can significantly improve load time.&lt;br&gt;&lt;br&gt;
💡 IAM roles &amp;amp; permissions are critical for security.  &lt;/p&gt;

&lt;p&gt;👇 Let’s Discuss!&lt;br&gt;
Have you deployed a static website using AWS S3? Let’s discuss in the comments! 🚀  &lt;/p&gt;

&lt;h1&gt;
  
  
  AWS #S3 #CloudFront #DevOps #CloudComputing #WebHosting #LearningJourney
&lt;/h1&gt;

</description>
      <category>webdev</category>
      <category>aws</category>
      <category>awschallenge</category>
      <category>s3</category>
    </item>
    <item>
      <title>"My Journey into DevOps: Learning, Building, and Growing 🚀"</title>
      <dc:creator>Sakshi More</dc:creator>
      <pubDate>Wed, 05 Mar 2025 18:54:44 +0000</pubDate>
      <link>https://dev.to/sakshi_more_20/my-journey-into-devops-learning-building-and-growing--43d4</link>
      <guid>https://dev.to/sakshi_more_20/my-journey-into-devops-learning-building-and-growing--43d4</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     👋 Hello, Dev Community! I'm Sakshi More 🚀
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Hey everyone! I'm Sakshi More, a Python Developer transitioning into DevOps. My goal? Become a DevOps Engineer! 💪&lt;/p&gt;

&lt;p&gt;💡 What I'm Learning:&lt;br&gt;
✅ AWS (EC2, IAM, CodePipeline)&lt;br&gt;
✅ Linux &amp;amp; Shell Scripting&lt;br&gt;
✅ CI/CD with GitHub Actions &amp;amp; AWS CodePipeline&lt;br&gt;
✅ Docker &amp;amp; Kubernetes (Coming soon!)&lt;/p&gt;

&lt;p&gt;I'll be sharing my learnings, projects, and challenges as I move from Cloud to DevOps. Excited to connect and grow with this amazing community! 🙌&lt;/p&gt;

&lt;p&gt;🚀 Let’s build, automate, and deploy together! Drop a comment if you're on a similar journey!&lt;/p&gt;

&lt;h1&gt;
  
  
  DevOps #AWS #CloudComputing #CI/CD #Linux #Python
&lt;/h1&gt;

</description>
      <category>webdev</category>
      <category>devops</category>
      <category>cloud</category>
      <category>aws</category>
    </item>
  </channel>
</rss>
