Skip to content

Instantly share code, notes, and snippets.

View almiavicas's full-sized avatar
🏠
Working from home

Alvaro Avila almiavicas

🏠
Working from home
View GitHub Profile
@almiavicas
almiavicas / user_data.sh
Last active June 23, 2024 17:33
Minimal configuration of a wordpress server for EC2 Amazon Linux 2023
#!/bin/bash
# Update the package repository and install necessary packages
sudo dnf update -y
# Install Apache, PHP, and MariaDB
sudo dnf install -y httpd php php-cli php-pdo php-fpm php-mysqlnd
# Start and enable the HTTPD service
sudo systemctl start httpd