Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

REF: https://ubiq.

co/tech-blog/how-to-enable-apache-server-status-dashboard-page/
https://chrome.google.com/webstore/detail/apache-status-beautifier/
laepbhmkhhfkmpgpbccogdapbkahplkn

vi /etc/apache2/apache2.conf
ExtendedStatus On
LoadModule status_module modules/mod_status.so
LoadModule status_module /usr/lib/apache2/modules/mod_status.so
<Location /server-status>
SetHandler server-status
Order allow,deny
# Deny from all
Allow from all
</Location>

<IfModule mpm_prefork_module>
StartServers 3
MinSpareServers 5
MaxSpareServers 15
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 3000
</IfModule>

vi /etc/apache2/sites-available/status.conf
<Location /server-status>
SetHandler server-status
#Order allow,deny
#Deny from all
Allow from all
Require all granted
</Location>
<VirtualHost *:80>
ServerAlias myhosting.server.com
<Location /server-status>
SetHandler server-status
#Order allow,deny
#Deny from all
Allow from all
Require all granted
</Location>
</VirtualHost>

sudo a2ensite status.conf


sudo a2ensite custom.conf
sudo a2dissite 000-default.conf

sudo systemctl restart apache2

http://smyhosting.server.com/server-status?refresh=1

You might also like