Skip to content

Instantly share code, notes, and snippets.

View Logbin05's full-sized avatar
👨‍💻
My life this code

Logbin05 Logbin05

👨‍💻
My life this code
View GitHub Profile
@lihini
lihini / nestjs-in-ubuntu-with-nginx-pm2.md
Created June 10, 2024 11:03
Host Nest.js app in Ubuntu server with NGINX reverse proxying

Guide to host an Nest.js API on Ubuntu

1. Create new super user for deployments

sudo apt-get update
adduser deployer
usermod -aG sudo deployer
su deployer