How to serve a website by NGINX
Check the instance http(80) and https(443) is open or not
1. Install Nginx
Update the package list:
sudo apt update
Install Nginx:
sudo apt install nginx -y
2. Check Nginx Status
Ensure Nginx is running:
sudo systemctl status nginx
If ...
sarthakwrites.hashnode.dev4 min read