📋 Task Overview
Configured NGINX web server on Ubuntu 22.04 LTS to serve custom content at http://<server-ip>
- ✅ Replace default NGINX page
- ✅ Ensure accessibility on port 80
- ✅ Document process & challenges
Configured NGINX web server on Ubuntu 22.04 LTS to serve custom content at http://<server-ip>
# AWS EC2 Instance
AMI: Ubuntu Server 22.04 LTS
Security Group: Allow HTTP (80)
sudo apt update sudo apt install nginx sudo systemctl start nginx
Pro Tip: Always verify service status with systemctl status nginx