[DOC-CVS] [doc-en] master: Add documentation for listen.setfib and access.suppress_path parameters (#4857)
[email protected] (Luffy via GitHub)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Luffy (sy-records)
Committer: GitHub (web-flow)
Pusher: sy-records
Date: 2025-09-04T16:02:17+08:00
Commit: https://github.com/php/doc-en/commit/f0149750aedec8b2eaa46338d90213dc4767d8b3
Raw diff: https://github.com/php/doc-en/commit/f0149750aedec8b2eaa46338d90213dc4767d8b3.diff
Add documentation for listen.setfib and access.suppress_path parameters (#4857)
Changed paths:
M install/fpm/configuration.xml
Diff:
diff --git a/install/fpm/configuration.xml b/install/fpm/configuration.xml
index 4b9edb5446f8..12ef26f48af9 100644
--- a/install/fpm/configuration.xml
+++ b/install/fpm/configuration.xml
@@ -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>