To Enable Apache Server 2.4 Status Module
For Windows :
- Go to <ApacheServer_Home_Dir>/conf and edit httpd.conf as below
1.1 Check status_module is enabled if not. enable it by just removing '#' (if below lines is present in the httpd.conf file else add it.)
LoadModule status_module modules/mod_status.so
1.2 Add below lines at end of the httpd.conf file.
<IfModule status_module>
<Location /server-status>
SetHandler server-status
Order allow,deny
Allow from all
</Location>
</IfModule>
- Restart Apache Server
Please sign in to leave a comment.
Comments
0 comments