Skip to content

Instantly share code, notes, and snippets.

View vls2021's full-sized avatar
💭
I may be slow to respond.

vls2021

💭
I may be slow to respond.
View GitHub Profile
@vls2021
vls2021 / step-1.txt
Created January 8, 2025 19:25 — 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.
@vls2021
vls2021 / step-1.txt
Created January 8, 2025 19:25 — 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.