Setting a RemoteHostValve for a context

2003-07-09 Thread Fruechtenicht, Torben
Hi, I want to protect the manager and the admin webapps in my Tomcat installation from requests originating outside my company - and setting a RemoteHostValve for the manager and the admin context seems the way to go. Therefore I've changed my server.xml file, changing the context entry for the

Re: Setting a RemoteHostValve for a context

2003-07-09 Thread Tim Funk
(Guessing) Try making your allow more regexp friendly: http://jakarta.apache.org/regexp/apidocs/org/apache/regexp/RE.html OLD: allow=*.ubis.local,*.ubis-ag.com NEW: allow=^.+\.ubis\.local$,^.+\.ubis\-ag\.com$ -Tim Fruechtenicht, Torben wrote: Hi, I want to protect the manager and the admin

AW: Setting a RemoteHostValve for a context

2003-07-09 Thread Fruechtenicht, Torben
. Juli 2003 15:04 An: Tomcat Users List Betreff: Re: Setting a RemoteHostValve for a context (Guessing) Try making your allow more regexp friendly: http://jakarta.apache.org/regexp/apidocs/org/apache/regexp/RE.html OLD: allow=*.ubis.local,*.ubis-ag.com NEW: allow=^.+\.ubis\.local