Tim Booth wrote:
> Hi Mark and Guru,
>
> Many thanks for both your replies.
>
> Mark Thomas <[EMAIL PROTECTED]> wrote:
>> The allow and deny fields take regular expressions. '.' is reserved
>> and needs to escaped. Take a look at the java.util.regex javadoc
>
> OK, I was going by the info found
Hi Mark and Guru,
Many thanks for both your replies.
Mark Thomas <[EMAIL PROTECTED]> wrote:
> The allow and deny fields take regular expressions. '.' is reserved
> and needs to escaped. Take a look at the java.util.regex javadoc
OK, I was going by the info found here:
http://tomcat.apache.org/to
Best thing to do is front apache http server listening on port 80 to
forward request to tomcat using mod_jk.
You can then use "allow and deny" in your web server (apache http
server) to control the access for specific URLs . this far more easy
to maintain :)
Have a look at http://httpd.apac
Tim Booth wrote:
>allow="127.0.0.1,192.171.160.155,192.171.160.186" deny=""/>
The allow and deny fields take regular expressions. '.' is reserved
and needs to escaped. Take a look at the java.util.regex javadoc
Mark