python: Rewrote SSI handler as a reusable module, and in Python3.
[ashd.git] / doc / multifscgi.doc
CommitLineData
f55027b3
FT
1multifscgi(1)
2=============
3
4NAME
5----
6multifscgi - Manage multiple instances of a FastCGI or SCGI server
7
8SYNOPSIS
9--------
10*multifscgi* [*-h*] 'NUM' 'PROGRAM' ['ARGS'...]
11
12DESCRIPTION
13-----------
14
15*multifscgi* is a simple program intended to manage multiple running
16instances of a FastCGI or SCGI server. It is distributed as part of
17*ashd*(7).
18
19The utility of multifscgi lies in the fact some FastCGI or SCGI server
20programs, such as PHP, process at most one request at a time. As such,
21multiple such server processes must run simultaneously in order to
22process requests concurrently.
23
24The *multifscgi* program works simply by forking 'NUM' instances of
25whatever program it is given on its command line. As long as the SCGI
26or FastCGI listen socket is passed on standard input, it will be
27naturally inherited by those child processes, and whichever one of
28them is currently idle will be able to accept a request. If any of the
29children terminate, a new one will be started in its place.
30
31OPTIONS
32-------
33
34*-h*::
35
36 Print a brief help message to standard output and exit.
37
38SIGNALS
39-------
40
41SIGTERM, SIGINT::
42
43 Terminate cleanly be killing off any remaining child
44 processes.
45
46AUTHOR
47------
48Fredrik Tolf <fredrik@dolda2000.com>
49
50SEE ALSO
51--------
52*callscgi*(1), *callfcgi*(1), *ashd*(7)