Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions install/fpm/configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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>
Expand Down