mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Missing FPM pool options
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@335821 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
61b48ea5d4
commit
9440e33553
1 changed files with 55 additions and 0 deletions
|
@ -262,6 +262,31 @@
|
|||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="listen-acl-users">
|
||||
<term>
|
||||
<parameter>listen.acl_users</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
When POSIX Access Control Lists are supported you can set them using this option.
|
||||
When set, <literal>listen.owner</literal> and <literal>listen.group</literal>
|
||||
are ignored. Value is a comma separated list of user names. Since PHP 5.6.5.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="listen-acl-groups">
|
||||
<term>
|
||||
<parameter>listen.acl_groups</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
See <literal>listen.acl_users</literal>.
|
||||
Value is a comma separated list of group names. Since PHP 5.6.5.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="user">
|
||||
<term>
|
||||
<parameter>user</parameter>
|
||||
|
@ -526,6 +551,36 @@
|
|||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="clear-env">
|
||||
<term>
|
||||
<parameter>clear_env</parameter>
|
||||
<type>boolean</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Clear environment in FPM workers.
|
||||
Prevents arbitrary environment variables from reaching FPM worker processes
|
||||
by clearing the environment in workers before env vars specified in this
|
||||
pool configuration are added. Since PHP 5.4.27.
|
||||
Default value: Yes.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="security-limit-extensions">
|
||||
<term>
|
||||
<parameter>security.limit_extensions</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Limits the extensions of the main script FPM will allow to parse.
|
||||
This can prevent configuration mistakes on the web server side.
|
||||
You should only limit FPM to .php extensions to prevent malicious
|
||||
users to use other extensions to exectute php code.
|
||||
Default value: .php.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
<para>
|
||||
It's possible to pass additional environment variables and update PHP settings of a certain pool.
|
||||
|
|
Loading…
Reference in a new issue