# Configuration

To install wget on centOS, we use the following command :

```
yum install wget
```

To check that it is installed we use:

```
rpm -qa | grep wget
```

We will also need to enable status in the apache configuration file, in centOS this is in :

```
cd /etc/httpd/conf
```

[![image-1627470999987.png](https://pandorafms.com/guides/public/uploads/images/gallery/2021-07/scaled-1680-/image-1627470999987.png)](https://pandorafms.com/guides/public/uploads/images/gallery/2021-07/image-1627470999987.png)

Open it and add the following :

```
ExtendedStatus On
<Location /server-status> 
SetHandler server-status 
Order deny,allow
Deny from all
Allow from <IP>
</Location>
```

[![image-1627471134783.png](https://pandorafms.com/guides/public/uploads/images/gallery/2021-07/scaled-1680-/image-1627471134783.png)](https://pandorafms.com/guides/public/uploads/images/gallery/2021-07/image-1627471134783.png)

then, we restart apache:

[![image-1627471173281.png](https://pandorafms.com/guides/public/uploads/images/gallery/2021-07/scaled-1680-/image-1627471173281.png)](https://pandorafms.com/guides/public/uploads/images/gallery/2021-07/image-1627471173281.png)