{
# 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-common http://127.0.0.1:980/server-common/
<Location /e-smith-common>
    order deny,allow
    deny from all
    allow from all
</Location>

ProxyPass /server-common http://127.0.0.1:980/server-common/
<Location /server-common>
    order deny,allow
    deny from all
    allow from all
</Location>

ProxyPass /common http://127.0.0.1:980/common/
<Location /common>
    order deny,allow
    deny from all
    allow from all
</Location>
