shortute.devAWS notesDifferentiate between on-premises, cloud, and hybrid cloud On-Premises: Data and applications run on local servers you manage. Use it for full control, specific security needs, or if you have existing hardware. On-Cloud: Hosted on the internet by a...Sep 15, 2024·27 min read
shortute.devDeploying a Static Website on Nginx Using DockerInstall Docker: Ensure Docker is installed on your system. Check Docker Installation: Create a directory for your project: Create a To-do-list <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="wi...Sep 13, 2024·2 min read
shortute.devCI/CD Pipeline with Jenkins for a Simple Web Application.Step 1 : Install Jenkins and npm Calculator app const express = require('express'); const app = express(); const port = 3000; app.use(express.urlencoded({ extended: true })); app.get('/', (req, res) => { res.send(` <h1>Simple Calcula...Sep 13, 2024·3 min read