This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |