Skip to content

Instantly share code, notes, and snippets.

View rineil's full-sized avatar

Neil rineil

  • 23:56 (UTC +07:00)
View GitHub Profile
@rineil
rineil / step-1.txt
Created April 8, 2024 06:58 — forked from atikju/step-1.txt
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.