Anyway server-status works for me.
I've just created file:
/etc/httpd/conf.d/server-status.conf
Put this, savem and reload httpd service with
# service httpd reload
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
<Location /server-info>
SetHandler server-info
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
and everything works fine

.