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
Open it and add the following :
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from <IP>
</Location>
then, we restart apache: