CGI and mod_perl

Does anyone have any pointers on how to configure a cgi deployed web app to run with mod_perl?
I installed mod_perl through EasyApache3 on WHM: Apache/2.2.32 (Unix) mod_ssl/2.2.32 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.10.1

I also have the following directive in httpd.conf (via includes):

[code]Alias /perl/ /home/admin/public_html/myXojoApp/cgi-bin/

<Location “/perl”>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options +ExecCGI
PerlOptions +ParseHeaders
allow from all

[/code]

I’ve tried with and without the Alias, but the process still looks to be running under the usual perl binaries /usr/bin/perl -w myXojoApp.cgi
It has been suggested on the forums to use mod_perl so I am hoping someone who’s done it can shed some light.