Skip to content

Instantly share code, notes, and snippets.

View arieldossantos's full-sized avatar
🐑
Beep

Ariel Reis arieldossantos

🐑
Beep
View GitHub Profile
@atikju
atikju / step-1.txt
Last active June 26, 2024 23:30
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.