From 7ef547606882ee306f6e881198fa4f09b7e66f9b Mon Sep 17 00:00:00 2001 From: Tigere Rangwani Date: Mon, 3 Dec 2018 17:55:04 +0000 Subject: [PATCH] Update "Apache installation on Windows" (#23240) --- guide/english/apache/index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/guide/english/apache/index.md b/guide/english/apache/index.md index 75802e8b10..f63ce74633 100644 --- a/guide/english/apache/index.md +++ b/guide/english/apache/index.md @@ -13,15 +13,22 @@ Apache runs on 67% of all webservers in the world. It is fast, reliable, and sec ``` sudo aptitude install apache2 ``` + #### On CentOS ``` sudo yum install httpd ```` + #### On Arch ``` pacman -S apache ``` +#### On Windows +Popular options for deploying Apache httpd and optionally, PHP + MySQL or PHP + MariaDB on Microsoft Windows, include; +* [XAMP](https://www.apachefriends.org/index.html "XAMP website") +* [WampServer](http://www.wampserver.com/ "WampServer website") + ### Getting Started Once you have Apache installed you need to know where to put your HTML documents. This location is generally referred to as the `DocumentRoot`. This location is usually `/var/www/html` on most Linux systems. Follow the instructions below to find the configuration file for Apache and the `DocumentRoot`.