Congrats! You chose wisely. Welllll.... luckily? Catalyst has a ramp up to get into it but it definitely repays later with ease of extension and scale. Here is probably the tack you want-

Instructions in Catalyst::Engine::FastCGI -- see specifically the "standalone server mode," it has two main advantages: 1) apache problems don't affect it, 2) zero downtime production changes. This goes well with it for *nix: Catalyst::Helper::FastCGI::ExternalServer. In the event you use that to make your app into a service, you'll probably want to also use Catalyst::Log::Log4perl.

Further digging if there is a specific that you get stuck on or something is unclear; Google: deploy catalyst fcgi and variations on that theme. The mailing list and irc are generally quite helpful.

Update: I should add that using fastcgi or modperl for development is a bad idea. You have to restart to see changes. You should be using the plain server -- scripts/myapp_server.pl -d -r -- in restart and debug modes to do dev work. It is wonderful to work this way. If you are doing your bit sanely there will be little or even no difference between the dev server and production deployment. Don't get hung up on a production style, bomb-proof deployment to get started or experiment. Have fun!


In reply to Re: Set up Catalyst with Fast CGI on Apache2 by Your Mother
in thread Set up Catalyst with Fast CGI on Apache2 by CColin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.