• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

How do I configure mod_perl's Apache::PerlRun on a virtual host?

R

ralphch

Guest
Hi,

I'm trying to test the performance of the ImageFolio (Perl based) gallery application using mod_perl's PerlRun mode. I have placed the following in the vhost.conf file and updated with websrvmng:

Alias /e-photo/cgi-bin/ /usr/local/psa/home/vhosts/domain.com/httpdocs/e-photo/cgi-bin/

PerlModule Apache::perlRun
<Directory /usr/local/psa/home/vhosts/domain.com/httpdocs/e-photo/cgi-bin>
<Files ~ (\.cgi$)>
SetHandler perl-script
PerlHandler Apache::perlRun
Options +ExecCGI
PerlSendHeader On
allow from all
</Files>
</Directory>

However, after doing this, using the "ab" benchmarking tool there's no difference from before, so I'm guessing that this is not working.

How can I configure a directory to use Apache's PerlRun module for parsing .pl and .cgi scripts? Is there a way to then test that this is actually working?

Any ideas will be appreciated.

Thanks,
Ralph
 
Back
Top