Deploying static site in Azure VM with Nginx
open terminal and ssh (ipaddress) of vm
ssh 74.225.215.114
sudo apt update
sudo apt upgrade
sudo apt install nginx
Create a directory for your static website files:
sudo mkdir -p /var/www/html/your-website
sudo chown -R $USER:$USER /var/www/html...
yashbhangale.hashnode.dev1 min read