Stacked Handlers Location directive -- inside and outside virtualhost

2003-05-31 Thread Shashank Kailash Shringi
I try to do the following: Outside the virtual host (non-ssl) in the location directive, I have the following: Location /~xyz AuthName someauth AuthType sometype PerlAuthenHandler MyModule require valid-user /Location When http://www.abc.com/~xyz gets called PerlAuthenHandler MyModule is invoked.

Re: Stacked Handlers Location directive -- inside and outside virtualhost

2003-05-31 Thread Shashank Kailash Shringi
I tried that already. When I use PerlAccessHander with Satisfy Any, the webpage is always served even if IP check fails. Interestingley, when IP check fails, it redirects (https url) but never ask for any userid or password and straight away serves the page. -- Shashank On Fri, 30 May 2003,

Re: Stacked Handlers Location directive -- inside and outside virtualhost

2003-05-31 Thread Shashank Kailash Shringi
Hi There, I read the following thread (with Geoff's comment in there too): http://www.gossamer-threads.com/archive/mod_perl_C1/docs-dev_F5/a_little_feedback_P38941/ than I thought about Geoff's advice about using PerlAccess Handler and came up with this concoction (which works :-) ) Conf entry:

Help with Apache::httpd_conf

2003-05-30 Thread Shashank Kailash Shringi
I am writing an apache authentication/authorization module which gets called in the Location directive outside the virtual host in the conf file. However, if a certain condition is not satisfied it redirects to secured server wherin our inhouse authentication module gets called and if the user

Help with Apache::httpd_conf

2003-05-30 Thread Shashank Kailash Shringi
I might have made a mistake by sending this post to docs-dev forum. Sending it again to modperl forum. --- I am writing an apache authentication/authorization module which gets called in the Location directive outside the virtual