Re: Configuring mod-Perl to handle only some file types

"Kevin A. McGrail" <[email protected]>
Newsgroups gmane.comp.apache.mod-perl
Message-ID <[email protected]>
On 8/8/2012 2:13 PM, [email protected] wrote:
> Hello,
>
> I have a mod_perl program that is written to handle URL's that
> name either a directory or *.html type files. All other types
> I want Apache to just do its regular thing (e.g., serve image
> type files, or .doc, .pdf, .js, .css, etc.)
> What's a good way to configure that? So for an entire website 
> directory, and all its substructure, my perl handler gets only 
> directories
> or  *.html files, and apache handles everything else without
> involing my perl handler.
>
> Thanks for any help or ideas. 
Hi Joe,

I used .cgim extension for this to reflect mod_perl

I don't have access to an example from a more recent server but this is 
how I made .cgim's under one site work.  It might help you.

<Directory /htdocs/example.org/html/>
   <Files ~ "\.cgim$">
     SetHandler perl-script
     PerlHandler Apache::PerlRun
     #PerlHandler Apache::Registry
     Options +ExecCGI
     PerlSendHeader On
     PerlInitHandler Apache::StatINC
     PerlSetVar StatINC_Debug 1
   </Files>
</Directory>

regards,
KAM
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.