Setting Up Nginx on Ubuntu for DevOps Stage 0

Introduction
In this blog, I document my experience completing HNG’s DevOps Stage 0 task, where I set up and configured NGINX on a free Ubuntu server. This process involved installing Nginx, serving a static HTML page, and making the page accessible via a public IP.
Approach
To accomplish this, I followed these steps:
Provisioned a free cloud VM using Oracle Cloud Free Tier.
Installed Nginx on the Ubuntu server.
Created a custom HTML page inside
/var/www/html/index.html
.Allowed HTTP traffic (port 80) using UFW.
Restarted Nginx and tested the setup by accessing my public IP in a browser.
Challenges and Solutions
Challenge 1: Finding a free cloud provider
🔹 Solution: I chose Oracle Cloud Free Tier since it provides an always-free VM with a public IP.
Challenge 2: Nginx not serving the custom page
🔹 Solution: I restarted Nginx using:
sudo systemctl restart nginx
I also cleared my browser cache to ensure I was viewing the latest changes.
Challenge 3: Firewall blocking requests
🔹 Solution: I allowed HTTP traffic using:
sudo ufw allow 'Nginx Full'
How This Task Contributes to My Learning
This task strengthened my Linux system administration skills and introduced me to basic Nginx configurations. It also reinforced the importance of firewall rules and server security in DevOps.
References
Cloud Engineers – Understanding cloud infrastructure and deployment strategies.
Linux Developers – Linux command-line skills and server setup.
Subscribe to my newsletter
Read articles from Gideon Amowogbaje directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
