• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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