Installation and configuration of Apache
2025-03-04
install httpd apache service:
sudo dnf install httpd
Start apache service
sudo systemctl start httpd.service
The default rootdirectory for apache /var/www/html/
. We change this by modifying the config file /etc/httpd/conf/httpd.conf
. The root directory for apache is now altered to another directory /var/www/billiard-scoreboard/
Restart Apache:
sudo systemctl restart httpd.service