Skip to content

Commit 2736670

Browse files
committed
Add documentation for listen.setfib and access.suppress_path
php/doc-en@f014975
1 parent 6389ba4 commit 2736670

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

install/fpm/configuration.xml

Lines changed: 30 additions & 3 deletions
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: b01a6761f8e5a1dc58ec92b4bba9b7b5878047fe Maintainer: takagi Status: ready -->
3+
<!-- EN-Revision: f0149750aedec8b2eaa46338d90213dc4767d8b3 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">
@@ -345,6 +345,20 @@
345345
</para>
346346
</listitem>
347347
</varlistentry>
348+
<varlistentry xml:id="listen-setfib">
349+
<term>
350+
<parameter>listen.setfib</parameter>
351+
<type>int</type>
352+
</term>
353+
<listitem>
354+
<para>
355+
associated the route table (FIB) を設定します。
356+
FreeBSD でのみ有効です。
357+
デフォルト: <literal>-1</literal>。
358+
PHP 8.2.0 以降で利用可能です。
359+
</para>
360+
</listitem>
361+
</varlistentry>
348362
<varlistentry xml:id="user">
349363
<term>
350364
<parameter>user</parameter>
@@ -1007,6 +1021,19 @@
10071021
</para>
10081022
</listitem>
10091023
</varlistentry>
1024+
<varlistentry xml:id="access.suppress-path">
1025+
<term>
1026+
<parameter>access.suppress_path</parameter>
1027+
<type>array</type>
1028+
</term>
1029+
<listitem>
1030+
<para>
1031+
アクセスログからフィルタすべき request_uri のリスト。
1032+
デフォルト: 未設定。
1033+
PHP 8.2.0 以降で利用可能です。
1034+
</para>
1035+
</listitem>
1036+
</varlistentry>
10101037
</variablelist>
10111038
<para>
10121039
追加の環境変数を渡して、特定のプールだけで PHP の設定を更新することができます。
@@ -1046,13 +1073,13 @@ php_admin_value[memory_limit] = 32M
10461073
<example>
10471074
<title>PHP の設定を nginx.conf で行う例</title>
10481075
<programlisting role="ini">
1049-
<![CDATA[
1076+
<![CDATA[
10501077
set $php_value "pcre.backtrack_limit=424242";
10511078
set $php_value "$php_value \n pcre.recursion_limit=99999";
10521079
fastcgi_param PHP_VALUE $php_value;
10531080
10541081
fastcgi_param PHP_ADMIN_VALUE "open_basedir=/var/www/htdocs";
1055-
]]>
1082+
]]>
10561083
</programlisting>
10571084
</example>
10581085
<caution>

0 commit comments

Comments
 (0)