install/fpm/index.xml
04210d535db52aed64b82572817f059059ddfebc
...
...
@@ -2,10 +2,7 @@
2
2
<!-- $Revision$ -->
3
3
<chapter xml:id="install.fpm" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4
4
<title>FastCGI Process Manager (FPM)</title>
5
-
<para>
6
-
FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation
7
-
with some additional features (mostly) useful for heavy-loaded sites.
8
-
</para>
5
+
&fpm.intro;
9
6
<para>
10
7
These features include:
11
8
<itemizedlist>
...
...
@@ -16,13 +13,14 @@
16
13
</listitem>
17
14
<listitem>
18
15
<para>
19
-
ability to start workers with different uid/gid/chroot/environment,
20
-
listening on different ports and using different php.ini (replaces safe_mode);
16
+
pools that give ability to start workers with different
17
+
uid/gid/chroot/environment, listening on different ports and using
18
+
different php.ini (replaces safe_mode);
21
19
</para>
22
20
</listitem>
23
21
<listitem>
24
22
<para>
25
-
stdout and stderr logging;
23
+
configurable stdout and stderr logging;
26
24
</para>
27
25
</listitem>
28
26
<listitem>
...
...
@@ -37,24 +35,27 @@
37
35
</listitem>
38
36
<listitem>
39
37
<para>
40
-
"slowlog" - logging scripts (not just their names, but their PHP backtraces too,
41
-
using ptrace and similar things to read remote process' execute_data) that are executed unusually slow;
38
+
"slowlog" - logging scripts (not just their names, but their PHP
39
+
backtraces too, using ptrace and similar things to read remote
40
+
process' execute_data) that are executed unusually slow;
42
41
</para>
43
42
</listitem>
44
43
<listitem>
45
44
<para>
46
-
<function>fastcgi_finish_request</function> - special function to finish request and flush all data while
47
-
continuing to do something time-consuming (video converting, stats processing etc.);
45
+
<function>fastcgi_finish_request</function> - special function to finish
46
+
request and flush all data while continuing to do something
47
+
time-consuming (video converting, stats processing etc.);
48
48
</para>
49
49
</listitem>
50
50
<listitem>
51
51
<para>
52
-
dynamic/static child spawning;
52
+
dynamic/ondemand/static child spawning;
53
53
</para>
54
54
</listitem>
55
55
<listitem>
56
56
<para>
57
-
basic SAPI status info (similar to Apache mod_status);
57
+
basic and extended status info (similar to Apache mod_status) with
58
+
various formats like json, xml and openmetrics supported;
58
59
</para>
59
60
</listitem>
60
61
<listitem>
61
62