http://www.perlmonks.org?node_id=697432


in reply to Re^2: Getting started with mod_perl
in thread Getting started with mod_perl

So you have to put every single such file into the configuration.

This is not necessarily the case. I tend to have a single entry point to my mod_perl application (a dispatcher), which handles everything below / except for (eg) paths to static content:

<Location ~ "^/(?!img|stylesheets|scripts|robots.txt|favicon.i +co|error).*" > SetHandler perl-script PerlResponseHandler My::Dispatcher </Location>

and that single handler parses the request, then hands it off to the relevant handler in my code. Once that handler has processed the request, it passes back the relevant data, template name etc, and my dispatcher handles the template processing and returns the correct response.

This allows you to do pretty much everything in Perl, without having to worry too much about apache.