Enable and Use the Apache Info Module Print

  • 0

The Apache Info Module (mod_info) provides a comprehensive overview of the server configuration. This article will walk you through enabling and using the Apache (mod_info) module.

To configure mod_info, add the following to your Apache configuration httpd.conf file.

<Location /server-info>
SetHandler server-info
</Location>

Once configured, the server information is obtained by accessing http://example.com/server-info


Was this answer helpful?

« Back