h1.
=toc
After you've installed MojoMojo, you will want to configure the web server. The guides below should help.
h2.
Catalyst versions prior to 5.8 are limited in that your application can only reside at / (more details and a workaround at "Catalyst and nginx":http://dev.catalyst.perl.org/wiki/adventcalendararticles/2008/02-catalyst_and_nginx). An alternative is to create a subdomain for your wiki. Here is an example nginx configuration for "my wiki":http://wiki.dandascalescu.com:
bc..
server {
server_name ~wiki.dandascalescu.(com|org|net) wiki.dascalescudan.com;}The mojomojo server is, basically, run as an external FastCGI server:
p.
cd bc.For cda robust configuration, use the start/home/dan/mojomojo.prod
script/mojomojo_fastcgi.plstop -listeninit 127.0.0.1:55900script -nprocfrom 5the -keeperrlighttpd 2>>log/error.logdeployment &page.
For
h2.Since DeploymentMojoMojo withoutis a webCatalyst application, you can use Catalyst's built-in HTTP server for standalone deployment. Catalyst::Engine::HTTP::Prefork is a high-performance pre-forking Catalyst engine and recommended:
Since MojoMojo is a Catalyst application, you can use Catalyst
CATALYST_ENGINE='bc. CATALYST_ENGINE='HTTP::Prefork' script/mojomojo_server.pl