From 9673f708164b8946b222276af049dde4fc9a37bd Mon Sep 17 00:00:00 2001 From: Amit Sharma <7789327+amitech@users.noreply.github.com> Date: Tue, 16 Oct 2018 01:33:21 +0530 Subject: [PATCH] Updated guide with Apache installation (#18809) Added installation for various operating systems --- client/src/pages/guide/english/apache/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/client/src/pages/guide/english/apache/index.md b/client/src/pages/guide/english/apache/index.md index 6dc1b5edd5..cd83d30a63 100644 --- a/client/src/pages/guide/english/apache/index.md +++ b/client/src/pages/guide/english/apache/index.md @@ -4,5 +4,20 @@ title: Apache ## Apache The Apache HTTP Server, commonly known as Apache, is a free and open-source cross-platform web server, released under the terms of [Apache License 2.0](https://en.wikipedia.org/wiki/Apache_License). Apache is developed and maintained by an open community of developers under the auspices of the Apache Software Foundation. +Apache runs on 67% of all webservers in the world. It is fast, reliable, and secure. It can be highly customized to meet the needs of many different environments by using extensions and modules +### Installation + +#### On Ubuntu +``` +sudo apt install apache2 +``` +#### On Centos +``` +sudo yum install httpd +```` +#### On Arch +``` +pacman -S apache +```