Skip to main content

Update the server & install Apache

To run Ticaga, we need to update the server:

sudo dnf update -y && sudo dnf upgrade -y

After we've updated and got the latest versions of the repositories, we can install Apache:

dnf install httpd nano zip unzip wget php-pdo_mysql php-pdo npm -y

Now we've installed Apache, we need to start it on server boot:

sudo systemctl enable httpd && sudo systemctl start httpd

If you have a firewall built in on the server, you'll need to allow Apache threw the firewall (optional):

sudo firewall-cmd --zone=public --add-service=http --permanent
sudo firewall-cmd --zone=public --add-service=https --permanent
sudo firewall-cmd --reload