perl - Catalyst + mod_cgi -


i developed catalyst application deploy. host (ovh) allows perl applications via mod_cgi. unfortunately, i'm used running catalyst apps on mod_perl. have no experience mod_cgi whatsoever, , can't seem find documentation on how should catalyst app running on mod_cgi.

any chance of guys give me hand? has of ever run catalyst app on ovh's services?

thanks, ldx

catalyst.pl creates cgi program.

foo-bar> cd .. > catalyst.pl -scripts foo::bar > ls foo-bar/scripts/ 

for catalyst 5.8, code of foo-bar/scripts/foo_bar_cgi.pl excluding pod looks like:

#!/usr/bin/env perl use catalyst::scriptrunner; catalyst::scriptrunner->run('foo::bar', 'cgi');  1; 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -