Fix formatting and wording in the Running-behind-apache guide (#8706)
Co-authored-by: Joel Hans <joel.g.hans@gmail.com>
Ioannis Cherouvim committed
Apr 14, 2021 at 16:07 UTC
4893bdac30ebb8a1d4b5db6bb62554861bc1ebd4
1 file changed
+9
-9
docs/Running-behind-apache.md
+9
-9
@@ -7,29 +7,29 @@ custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/Running-beh
7
8
Below you can find instructions for configuring an apache server to:
9
10
-1. proxy a single Netdata via an HTTP and HTTPS virtual host
11
-2. dynamically proxy any number of Netdata servers
12
-3. add user authentication
13
-4. adjust Netdata settings to get optimal results
10
+1. Proxy a single Netdata via an HTTP and HTTPS virtual host.
11
+2. Dynamically proxy any number of Netdata servers.
12
+3. Add user authentication.
13
+4. Adjust Netdata settings to get optimal results.
14
15
## Requirements
16
17
-Make sure your apache has installed `mod_proxy` and `mod_proxy_http`.
17
+Make sure your apache has `mod_proxy` and `mod_proxy_http` installed and enabled.
18
19
-On debian/ubuntu systems, install them with this:
19
+On Debian/Ubuntu systems, install apache, which already includes the two modules, using:
20
21
```sh
22
sudo apt-get install apache2
23
```
24
25
-Also make sure they are enabled:
25
+Enable them:
26
27
```sh
28
sudo a2enmod proxy
29
sudo a2enmod proxy_http
30
```
31
32
-Ensure your rewrite module is enabled:
32
+Also, enable the rewrite module:
33
34
```sh
35
sudo a2enmod rewrite
@@ -166,7 +166,7 @@ Repeat the operation for as many servers as you need.
166
167
If you wish to add an authentication (user/password) to access your Netdata, do these:
168
169
-Install the package `apache2-utils`. On debian / ubuntu run `sudo apt-get install apache2-utils`.
169
+Install the package `apache2-utils`. On Debian/Ubuntu run `sudo apt-get install apache2-utils`.
170
171
Then, generate password for user `netdata`, using `htpasswd -c /etc/apache2/.htpasswd netdata`
172