Presentations2Go Server uses the apache module mod_status to retrieve status en performance information from the Apache service and show it in the Server Status menus.

When apache is installed, access to this status page is not restricted so anyone could access this status information. If you wish to limit access to this status page, you can do so by modifying the apache config file in c:\apache24\conf\httpd.conf

Find the following in the conf file:


<Location "/server-status">

       SetHandler server-status

</Location>


And modify it to limit access to a specific subnet or ip addresses.


Eg:

<Location "/server-status">

       SetHandler server-status

       deny from all

       allow from 10.10.20

</Location>


Will only allow access from ip addresses 10.10.20.1-10.10.20.254 (the 10.10.20.0 subnet)

Beware that if you add this, you should allow access from all ip addresses on the server since the request may come from any of those addresses.