{
# 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-password http://127.0.0.1:980/user-password/
<Location /e-smith-password>
    order deny,allow
    deny from all
{
    $OUT .= "    allow from $localAccess\n";
}
</Location>

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

