http://server-ip/server-status
Ubuntuの場合、デフォルトで /server-statusが入っているみたいなので、アクセス権をクライアントに出すだけでOK。

1
2
3
4
5
6
7
8
ExtendedStatus On
 
<location /server-status
  SetHandler server-status
  Order deny,allow
  Deny from all
  Allow from localhost ip6-localhost 192.168.1.33
/location

「ExtendedStatus On」にすることと、「Allow from」に自分のIPを追加しておく。もちろん、Apache2はリスタート。
 

apache_status