Deploying a Node.js Application on AWS EC2 with Nginx and Enabling SSL CertificateA step-by-step guide on how to deploy a node.js application on AWS and achieve port forwarding using nginx is provided in this article. Starting out with EC2. Build an Ubuntu instance. Connect via SSH to your instance. Install Dependencies. Uplo...Apr 7, 2024·4 min read
Day 11 Task: Advance Git & GitHub for DevOps Engineers: Part-2Git Stash:- Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't wan...May 30, 2023·2 min read
Day 10 Task: Advance Git & GitHub for DevOps Engineers.What is Branch? A Branch is a representation of different isolated versions of code. Let me explain with a help of an example. I have cloned the repository from GitHub.When you enter the repository the default branch name of your repository is main,...May 30, 2023·3 min read
Day 9:- Deep Dive in Git & GitHub for DevOps EngineersWhat is Git? Why is it important? Git is a version control system. It is used to track changes to your file. You can revert changes to its previous versions. It is important because:- Collaboration:- Many developers can work on the same project by c...May 24, 2023·5 min read
Day 8:-Basic Git and Github for DevOps EngineersGit:-Git is a version control system which is used to track changes to your files. With the help of Git, you can track who made the changes, you can revert it to the previous versions, if needed. Github:-t's like a virtual workspace where you can sto...May 22, 2023·2 min read
Day 7:-Understanding package managers , systemctl and systemdPackage managers:- A package manager is a tool or a way to install, upgrade, and remove software packages on the operating system. It can be GUI(Graphical User-Interpretation or a command-line-tool like apt-get or Pacman A package is generally referr...May 20, 2023·2 min read
Day 6:File Permission and Access Control Lists in LinuxIn Linux, file permissions play a crucial role in ensuring the security and integrity of the system. Every file and directory on a Linux system has a set of permissions that determine who can access the file, and what actions they can perform on it. ...May 18, 2023·4 min read