Skip to content

Instantly share code, notes, and snippets.

View M-IrtazaGhaffar's full-sized avatar
😀
Full Stack Web Developer

Muhammad Irtaza Ghaffar M-IrtazaGhaffar

😀
Full Stack Web Developer
View GitHub Profile
@M-IrtazaGhaffar
M-IrtazaGhaffar / README.md
Created September 28, 2024 09:20 — forked from piyushgarg-dev/README.md
Kafka Crash Course
@M-IrtazaGhaffar
M-IrtazaGhaffar / file.asm
Created December 25, 2023 16:28
data segment a dw 1234h b dw 5678h c dd ? data ends code segment assume ds:data, cs:code start: mov ax,data mov ds,ax mov ax,a mov bx,b mul bx mov word ptr c,ax mov word ptr c+2,dx int 3 code ends end start
data segment
a dw 1234h
b dw 5678h
c dd ?
data ends
code segment
assume ds:data, cs:code
start:
mov ax,data

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Create Free AWS Account

Create free AWS Account at https://aws.amazon.com/

2. Create and Lauch an EC2 instance and SSH into machine

I would be creating a t2.medium ubuntu machine for this demo.