I've gone through the Apache guide to enable to mod_info.
As per doc:
To configure mod_info, add the following to your
httpd.conf
file.<Location /server-info> SetHandler server-info </Location>
You may wish to use mod_access inside the
<Location>
directive to limit access to your server configuration information:<Location /server-info> SetHandler server-info Order deny,allow Deny from all Allow from yourcompany.com </Location>
Once configured, the server information is obtained by accessing
http://your.host.dom/server-info
In my case this link is not giving any info. Is there anything I need to install as mod_info.c or something? Is there anything I need to put as AddModule or something?