+34 911 599 883

+34 911 895 172

Habilitar server-status en servidor apache de Plesk

1. Editar configuracion de apache

vim /etc/httpd/conf/httpd.conf

2. Habilitar ExtendedStatus:

ExtendedStatus On

3. Cambiar esto:

#<Location /server-status>
#    SetHandler server-status
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Location>

por esto:

<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>

4. Reiniciar apache

/etc/init.d/httpd restart

5. Comprobar

yum install elinks
elinks http://127.0.0.1:7080/server-status?refresh=1