Skip to content

Commit f014975

Browse files
authored
Add documentation for listen.setfib and access.suppress_path parameters (php#4857)
1 parent 8e31067 commit f014975

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

install/fpm/configuration.xml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,18 @@
342342
</para>
343343
</listitem>
344344
</varlistentry>
345+
<varlistentry xml:id="listen-setfib">
346+
<term>
347+
<parameter>listen.setfib</parameter>
348+
<type>int</type>
349+
</term>
350+
<listitem>
351+
<para>
352+
Set the associated the route table (FIB). FreeBSD only.
353+
Default Value: <literal>-1</literal>. Since PHP 8.2.0.
354+
</para>
355+
</listitem>
356+
</varlistentry>
345357
<varlistentry xml:id="user">
346358
<term>
347359
<parameter>user</parameter>
@@ -978,6 +990,18 @@
978990
</para>
979991
</listitem>
980992
</varlistentry>
993+
<varlistentry xml:id="access.suppress-path">
994+
<term>
995+
<parameter>access.suppress_path</parameter>
996+
<type>array</type>
997+
</term>
998+
<listitem>
999+
<para>
1000+
A list of request_uri values which should be filtered from the access log.
1001+
Default value: not set. Since PHP 8.2.0.
1002+
</para>
1003+
</listitem>
1004+
</varlistentry>
9811005
</variablelist>
9821006
<para>
9831007
It's possible to pass additional environment variables and update PHP settings of a certain pool.
@@ -1017,13 +1041,13 @@ php_admin_value[memory_limit] = 32M
10171041
<example>
10181042
<title>set PHP settings in nginx.conf</title>
10191043
<programlisting role="ini">
1020-
<![CDATA[
1044+
<![CDATA[
10211045
set $php_value "pcre.backtrack_limit=424242";
10221046
set $php_value "$php_value \n pcre.recursion_limit=99999";
10231047
fastcgi_param PHP_VALUE $php_value;
10241048
10251049
fastcgi_param PHP_ADMIN_VALUE "open_basedir=/var/www/htdocs";
1026-
]]>
1050+
]]>
10271051
</programlisting>
10281052
</example>
10291053
<caution>

0 commit comments

Comments
 (0)