Hi all, So, I have a httpd problem that's driving me up the wall. I have several web servers which I am monitoring via the server-status functionality of apache (2). For some reason, wget localhost/server-status works on half of my machines, and not on the other half. I know it's not a permissions issue (as I've confirmed that by modifying the conf file to cause those errors.) It literally just returns and empty html file when requested.
~> wget localhost/server-status --11:14:05-- http://localhost/server-status Resolving localhost... 127.0.0.1 Connecting to localhost|127.0.0.1|:80... connected. HTTP request sent, awaiting response... 200 OK Length: unspecified [text/html] Saving to: `server-status' [ <=> ] 0 --.-K/s in 0s 11:14:05 (0.00 B/s) - `server-status' saved [0] Config snippet: LoadModule status_module modules/mod_status.so ... ExtendedStatus On ... <Location /server-status> SetHandler server-status Order deny,allow Deny from all Allow from 127.0.0.1 </Location> ... I know the config works, as I have cut and pasted from a working config to the non working config, and I know the module is installed. So, this leaves me at a quandry. I know it's "working" but it's not returning and data at all. Is there some other package I need, some other configuration option I haven't set? Any help at all would be appreciated! Thanks! Mike Raley P.S. - it's Centos 5, apache 2.2.3, and a fully updated system w/ yum.
