On Wed, Jun 18, 2003 at 04:54:51PM +0100, Dhruba Bandopadhyay wrote:
> Hello
> 
> Just like phpinfo() for web based PHP information is there a web based
> method or providing similar version and module information for apache?

Check out the server-info and server-status handlers.  My set up:

LoadModule info_module /usr/lib/apache/1.3/mod_info.so
LoadModule status_module /usr/lib/apache/1.3/mod_status.so
ExtendedStatus On
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from <whatever ips you want to allow>
</Location>
<Location /server-info>
    SetHandler server-info
    Order deny,allow
    Deny from all
    Allow from <whatever ips ... >
</Location>


-- 
Alan <[EMAIL PROTECTED]> - http://arcterex.net
--------------------------------------------------------------------
"There are only 3 real sports: bull-fighting, car racing and mountain 
climbing. All the others are mere games."                -- Hemingway

--
[EMAIL PROTECTED] mailing list

Reply via email to