# Configuracion

Para instalar wget en centOS, usamos el siguiente comando :

```
yum install wget
```

Para comprobar que esta instalado usamos:

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

También deberemos habilitar status en el archivo de configuración apache, en centOS esta en :

```
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)

Lo abrimos y añadimos lo siguiente :

```
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)

reiniciamos 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)