Re: Many handlers in the same module

2008-03-25 Thread Jonathan Vanasco
On Mar 19, 2008, at 2:22 PM, Colin Wetherbee wrote: PerlAccessHandler JetSet::Handler->AccessHandler PerlResponseHandler JetSet::Handler->ResponseHandler sub ResponseHandler { my (undef, $r) = @_; # ... } what about... PerlAccessHandler JetSet::Handler::AccessHandler sub AccessHandler

Re: LocationMatch wildcard on 404

2008-03-25 Thread Will Fould
Wow - actually, I'm glad you asked - thanks a lot perrin: Ultimately I think we're going this way with our new hardware, separating all static items from the application servers: - have modperl app server send redirect for all static content to the load balancer. - Nothing static exists on the

Re: LocationMatch wildcard on 404

2008-03-25 Thread Perrin Harkins
On Tue, Mar 25, 2008 at 8:56 PM, Will Fould <[EMAIL PROTECTED]> wrote: > Can a LocationMatch "wildcard" trigger on a normal 404 or is there a better > way to do this? There are many ways. Here are a few: - A custom ErrorDocument pointing to a URL that your perl code handles. (The 404 approach yo

LocationMatch wildcard on 404

2008-03-25 Thread Will Fould
I have an application that handles virtual directory requests: e.g. http://www.example.com/part where 'part' does not really exist. It does it like this: SetHandler perl-script PerlOptions +GlobalRequest PerlResponseHandler myPartHandler::myPartHandler

Re: modperl with SSL

2008-03-25 Thread Clinton Gormley
On Tue, 2008-03-25 at 17:45 +0800, J. Peng wrote: > thanks. > how about the capability of it? > We have more than 100 million users,that's a great challenge. That's a lot of users :) I don't have the experience of supporting that number of users, but I've used it on a site with 80 requests / seco