Skip to content

Commit a5d0c8f

Browse files
authored
Fix FPM event mechanism poll typo and improve it 他を取り込み (#4334, #4313, #4052, #3866) (#291)
* PHP-FPM Extend "access.format" configuration を取り込み (#3866) * Simplify pm.start_servers default を取り込み (#4052) * Use same case for access.format "%T" in install.fpm.configuration.php を取り込み (#4313) * Fix FPM event mechanism poll typo and improve it を取り込み (#4334)
1 parent 3a81111 commit a5d0c8f

File tree

1 file changed

+23
-8
lines changed

1 file changed

+23
-8
lines changed

install/fpm/configuration.xml

+23-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 0a2cede24d8931daf458935665d0cac08d0926c5 Maintainer: takagi Status: ready -->
3+
<!-- EN-Revision: b01a6761f8e5a1dc58ec92b4bba9b7b5878047fe Maintainer: takagi Status: ready -->
44
<!-- Credits: mumumu -->
55

66
<sect1 xml:id="install.fpm.configuration" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -212,8 +212,8 @@
212212
<listitem>
213213
<para>
214214
FPM が利用するイベントメカニズム。
215-
select、pool、epoll、kqueue (*BSD)、port (Solaris) が利用可能
216-
デフォルト値: 未設定 (自動検出)
215+
epoll、kqueue (*BSD)、port (Solaris)、poll、select が利用可能です
216+
デフォルト値: 未設定 (自動検出。epoll または kqueue が優先的に使用されます)
217217
</para>
218218
</listitem>
219219
</varlistentry>
@@ -421,8 +421,7 @@
421421
<listitem>
422422
<para>
423423
起動時に作成される子プロセスの数。<literal>pm</literal> が <literal>dynamic</literal>
424-
の場合にのみ使います。デフォルト値: min_spare_servers + (max_spare_servers -
425-
min_spare_servers) / 2
424+
の場合にのみ使います。デフォルト値: (min_spare_servers + max_spare_servers) / 2
426425
</para>
427426
</listitem>
428427
</varlistentry>
@@ -972,19 +971,35 @@
972971
<entry>
973972
<constant>%t</constant>
974973
</entry>
975-
<entry>リクエストを受け取ったサーバー側の時刻</entry>
974+
<entry>
975+
リクエストを受け取ったサーバー側の時刻。
976+
<literal>strftime(3)</literal> のフォーマットを指定でき、デフォルトは
977+
<literal>%d/%b/%Y:%H:%M:%S %z</literal> です。
978+
<literal>strftime(3)</literal> のフォーマットは
979+
<literal>%{&lt;strftime_format&gt;}t</literal> タグで囲む必要があります。
980+
例えば、ISO8601 形式でフォーマットするには
981+
<literal>%{%Y-%m-%dT%H:%M:%S%z}t</literal> を使ってください。
982+
</entry>
976983
</row>
977984
<row>
978985
<entry>
979986
<constant>%T</constant>
980987
</entry>
981-
<entry>ログが書き込まれた時間(リクエストが終了した時間)</entry>
988+
<entry>
989+
ログが書き込まれた時間 (リクエストが終了した時間)。
990+
<literal>strftime(3)</literal> のフォーマットを指定でき、デフォルトは
991+
<literal>%d/%b/%Y:%H:%M:%S %z</literal> です。
992+
<literal>strftime(3)</literal> のフォーマットは
993+
<literal>%{&lt;strftime_format&gt;}T</literal> タグで囲む必要があります。
994+
例えば、ISO8601 形式でフォーマットするには
995+
<literal>%{%Y-%m-%dT%H:%M:%S%z}T</literal> を使ってください。
996+
</entry>
982997
</row>
983998
<row>
984999
<entry>
9851000
<constant>%u</constant>
9861001
</entry>
987-
<entry>Remote user</entry>
1002+
<entry><literal>Authorization</literal> ヘッダーで Basic 認証が指定されていれば、そのユーザー名</entry>
9881003
</row>
9891004
</tbody>
9901005
</tgroup>

0 commit comments

Comments
 (0)