The <IfModule> tags for MOD_STATUS and MOD_INFO were reversed. This caused neither to work unless both are loaded.
--- d:\tempapache\apache-1.3\conf\httpd.conf-dist-nw Wed Feb 21 20:48:16 2001 +++ d:\projects\1.3.x\conf\httpd.conf-dist-nw Fri Mar 02 09:51:40 2001 @@ -802,7 +802,7 @@ # Allow server status reports, with the URL of http://servername/server-status # Change the ".your_domain.com" to match your domain to enable. # -<IfModule mod_info.c> +<IfModule mod_status.c> <Location /server-status> SetHandler server-status Order deny,allow @@ -816,7 +816,7 @@ # http://servername/server-info (requires that mod_info.c be loaded). # Change the ".your_domain.com" to match your domain to enable. # -<IfModule mod_status.c> +<IfModule mod_info.c> <Location /server-info> SetHandler server-info Order deny,allow
