RE: Host-based access to web applications

2007-04-18 Thread Raghupathy, Gurumoorthy
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

RE: Host-based access to web applications

2007-04-18 Thread Tim Booth
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:

Re: Host-based access to web applications

2007-04-18 Thread Mark Thomas
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 here:

Re: Host-based access to web applications

2007-04-17 Thread Mark Thomas
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 -