Rip the stuff out of Engine::FastCGI in master
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Deployment / FastCGI.pod
CommitLineData
1d2376f3 1=head1 NAME
2
3Catalyst::Manual::Deployment::FastCGI - Deploying Catalyst with FastCGI
4
5=head1 FastCGI Deployment
6
7FastCGI is a high-performance extension to CGI. It is suitable
8for production environments.
9
10=head2 Pros
11
12=head3 Speed
13
14FastCGI performs equally as well as mod_perl. Don't let the 'CGI' fool you;
15your app runs as multiple persistent processes ready to receive connections
16from the web server.
17
18=head3 App Server
19
20When using external FastCGI servers, your application runs as a standalone
21application server. It may be restarted independently from the web server.
22This allows for a more robust environment and faster reload times when
23pushing new app changes. The frontend server can even be configured to
24display a friendly "down for maintenance" page while the application is
25restarting.
26
27=head3 Load-balancing
28
29You can launch your application on multiple backend servers and allow the
30frontend web server to load-balance between all of them. And of course, if
31one goes down, your app continues to run fine.
32
33=head3 Multiple versions of the same app
34
35Each FastCGI application is a separate process, so you can run different
36versions of the same app on a single server.
37
38=head3 Can run with threaded Apache
39
40Since your app is not running inside of Apache, the faster mpm_worker module
41can be used without worrying about the thread safety of your application.
42
43=head2 Cons
44
45You may have to disable mod_deflate. If you experience page hangs with
46mod_fastcgi then remove deflate.load and deflate.conf from mods-enabled/
47
48=head3 More complex environment
49
50With FastCGI, there are more things to monitor and more processes running
51than when using mod_perl.
52
53XXX - FIXME, note not just apache!
54
45b58a85 55=head2 Standalone FastCGI Server
1d2376f3 56
45b58a85 57In server mode the application runs as a standalone server and accepts
58connections from a web server. The application can be on the same machine as
59the web server, on a remote machine, or even on multiple remote machines.
60Advantages of this method include running the Catalyst application as a
61different user than the web server, and the ability to set up a scalable
62server farm.
63
64To start your application in server mode, install the FCGI::ProcManager
65module and then use the included fastcgi.pl script.
66
67 $ script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5
68
69Command line options for fastcgi.pl include:
70
71 -d -daemon Daemonize the server.
72 -p -pidfile Write a pidfile with the pid of the process manager.
73 -l -listen Listen on a socket path, hostname:port, or :port.
74 -n -nproc The number of processes started to handle requests.
75
76See below for the specific web server configurations for using the external
77server.
1d2376f3 78
79=head1 AUTHORS
80
81Catalyst Contributors, see Catalyst.pm
82
83=head1 COPYRIGHT
84
85This library is free software. You can redistribute it and/or modify it under
86the same terms as Perl itself.
87
88=cut
89