Create multiple Sites in Nginx
Install nginx if not already
# Update the package repository
sudo apt update
sudo apt install -y nginx
# Verify nginx is running by
sudo systemctl status nginx.service
# if not running enabled and start
sudo systemctl enable nginx.service && sudo sy...
mdusama.hashnode.dev2 min read