1
0
mirror of https://github.com/php/doc-en.git synced 2026-03-23 23:32:18 +01:00

Add documentation for listen.setfib and access.suppress_path parameters (#4857)

This commit is contained in:
Luffy
2025-09-04 16:02:17 +08:00
committed by GitHub
parent 8e31067f1a
commit f0149750ae

View File

@@ -342,6 +342,18 @@
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="listen-setfib">
<term>
<parameter>listen.setfib</parameter>
<type>int</type>
</term>
<listitem>
<para>
Set the associated the route table (FIB). FreeBSD only.
Default Value: <literal>-1</literal>. Since PHP 8.2.0.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="user">
<term>
<parameter>user</parameter>
@@ -978,6 +990,18 @@
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="access.suppress-path">
<term>
<parameter>access.suppress_path</parameter>
<type>array</type>
</term>
<listitem>
<para>
A list of request_uri values which should be filtered from the access log.
Default value: not set. Since PHP 8.2.0.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
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
<example>
<title>set PHP settings in nginx.conf</title>
<programlisting role="ini">
<![CDATA[
<![CDATA[
set $php_value "pcre.backtrack_limit=424242";
set $php_value "$php_value \n pcre.recursion_limit=99999";
fastcgi_param PHP_VALUE $php_value;
fastcgi_param PHP_ADMIN_VALUE "open_basedir=/var/www/htdocs";
]]>
]]>
</programlisting>
</example>
<caution>