How to Configure Apache Web Server on Fedora
Apache is a powerful, feature rich web server that is used for serving both static and dynamic websites and has been around since 1995. The latest version on Apache is Apache httpd 2.4.39 , and in this topic, you will learn how you can install and configure Apache web server on Fedora 27 and later. Prerequisites Before you beg in, its important to conduct a flight check and ensure the following requiements are met: An instance of Fedora 27 server SSH access to the Server Non-root user configured with sudo privileges Step 1. Install Apache on Fedora To get started, let’s first the system repositories. To do this, log in to your Server vua SSH and run the following command with sudo privileges $ sudo dnf update Next, install apache webserver using the command $ sudo dnf install httpd To start Apache2 web server run $ sudo systemctl start httpd To verify and confirm that Apache2 web server is running execute the command $ sudo syst...