Skip to content

Instantly share code, notes, and snippets.

View viraljetani's full-sized avatar

Viral Jetani viraljetani

View GitHub Profile
@atikju
atikju / step-1.txt
Last active May 7, 2025 23:51
NGINX, PHP, MYSQL installation with Amazon Linux 2023
Step 1: Let's start with NGINX installation
sudo dnf update //To Install Latest Update
sudo dnf install -y nginx // Install Nginx
sudo systemctl start nginx.service //Start Nginx Server
sudo systemctl status nginx.service // Check Server Status
sudo systemctl enable nginx.service // Enable Auto Server Start on Reboot
Now you should be able to see the server running by hitting your public ip.