{
# ProxyPass executes a module which relays requests to another server
# We use it to allow transparent access to the admin instance of the
# web server.
}

ProxyPass /e-smith-manager http://127.0.0.1:980/e-smith-manager/
<Location /e-smith-manager>
    order deny,allow
    deny from all
{
    $OUT .= "    allow from $localAccess\n";
}
</Location>

ProxyPass /server-manager http://127.0.0.1:980/server-manager/
<Location /server-manager>
    order deny,allow
    deny from all
{
    $OUT .= "    allow from $localAccess\n";
}
</Location>
