On Wed, Jan 6, 2010 at 6:04 AM, Alvise Nicoletti
<li...@alvisenicoletti.com> wrote:
> I would like to restrict access to everything-but-mywebsite like the
> example:

>
> <IfModule mod_proxy.c>
>         ProxyRequests Off
>         <Proxy *>
>                 AddDefaultCharset off
>                 Order deny,allow
>                 Deny from all
>
>                 Allow from www.TOMCATWEBSITE.com
>         </Proxy>
>         ProxyVia On
> </IfModule>


That restricts access "from" an [client] address, not access "to" a
backend [webserver] address.

If you're running a reverse proxy only (ProxyRequests off), and you've
told it to connect to a specific backend via ProxyPass, I don't see
why you need furtherer configuration to restrict anything.

-- 
Eric Covener
cove...@gmail.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to