Installing Apache2 on Arch Linux
Free and open source Apache is one of the most popular servers in the world.
It is based on a focused architecture and supports all major operating systems, Linux, Windows, macOS and Solaris.
Apache is customizable and can be integrated with other, It offers many features, including load balancing , URL tracking, automatic indexing , robust support, and more.
I’ll make it simple:
Let’s do the update:
sudo pacman -Syu
On Debian is very simple:
sudo apt-get install apache2
On Arch Linux:
pacman -S apache
Then we can create the symbolic link, to boot apache on the start.
and we use these commands:
systemctl start httpd
systemctl enable httpd
We can check the status:
systemctl status httpd
Apache. You can create it in the Apache default root directory using the following command:
nano /srv/http/index.html
Let’s just add some html code in a file:
<html>
<title>APACHE2 - ARCH LINUX</title>
<body>
<h2>APACHE2 - ARCH LINUX</h2>
</body>
</html>