Wednesday, October 7, 2020

Apache : Enable Mod_Status Module in Apache Centos 7

1. Enable and configure mod_status module in Apache

#vi /etc/httpd/conf.modules.d/00-base.conf

Un-commented to enable mod_status module

2. Once enable the module, need to create a server-status.conf in /etc/httpd/conf.d

#vi /etc/httpd/conf.d/server-status.conf

 Add following line:

<Location "/server-status">
       SetHandler server-status
</Location>

3.Restart Apache services

# systemctl restart httpd

Related Posts:

0 comments:

Post a Comment