devilbox/docs/configuration-files/php-fpm-conf.rst

178 lines
5.3 KiB
ReStructuredText
Raw Normal View History

2018-04-07 16:46:37 +00:00
.. _php_fpm_conf:
************
php-fpm.conf
************
``php-fpm.conf`` changes are global to all projects, but will only affect the currently selected
PHP version.
**Table of Contents**
.. contents:: :local:
General
=======
You can set custom php-fpm.conf configuration options for each PHP version separately.
These changes affect the PHP-FPM process itself, global as well as pool specific configuration can
be set.
.. note::
2018-06-03 18:45:01 +00:00
The default PHP-FPM pool is called ``www`` in case you want to make changes to it.
2018-04-07 16:46:37 +00:00
See the directory structure for PHP-FPM configuration directories inside ``./cfg/`` directory:
.. code-block:: bash
2018-06-03 18:45:01 +00:00
host> ls -l path/to/devilbox/cfg/ | grep 'php-fpm'
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-5.3/
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-5.4/
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-5.5/
drwxr-xr-x 2 cytopia cytopia 4096 Apr 3 22:04 php-fpm-5.6/
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-7.0/
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-7.1/
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-7.2/
drwxr-xr-x 2 cytopia cytopia 4096 Mar 5 21:53 php-fpm-7.3/
2018-04-07 16:46:37 +00:00
Customization is achieved by placing a file into ``cfg/php-fpm-X.X/`` (where ``X.X`` stands for
your PHP version). The file must end by ``.conf`` in order to be sourced by the PHP-FPM server.
Each of the PHP-FPM conf configuration directories already contain an example file:
``devilbox-custom.conf-example``, that can simply be renamed to ``devilbox-custom.conf``.
This file holds some example values that can be adjusted or commented out.
In order for the changes to be applied, you will have to restart the Devilbox.
.. seealso::
2018-06-03 18:45:01 +00:00
To find out about all available PHP-FPM directives, global or pool specific have a look
at its documentation: https://secure.php.net/manual/en/install.fpm.configuration.php
2018-04-07 16:46:37 +00:00
Examples
========
Change rlimit core for master process for PHP 7.1
-------------------------------------------------
The following examples shows you how to change the
`rlimit_core <https://secure.php.net/manual/en/install.fpm.configuration.php#rlimit-core-master>`_
of PHP-FPM 7.1 master process to 100.
.. code-block:: bash
2018-06-03 18:45:01 +00:00
# Navigate to the Devilbox directory
host> cd path/to/devilbox
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
# Navigate to PHP 7.1 config directory
host> cd cfg/php-fpm-7.1
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
# Create new conf file
host> touch rlimit.conf
2018-04-07 16:46:37 +00:00
Now add the following content to the file:
.. code-block:: ini
2018-06-03 18:45:01 +00:00
:caption: rlimit.conf
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
[global]
rlimit_core = 100
2018-04-07 16:46:37 +00:00
.. important:: Note the ``[global]`` section.
In order to apply the changes you need to restart the Devilbox.
Change child process on pool ``www`` for PHP 5.6
------------------------------------------------
The following examples shows you how to change the
`pm <https://secure.php.net/manual/en/install.fpm.configuration.php#pm>`_,
2018-06-30 15:36:11 +00:00
`pm.max_children <https://secure.php.net/manual/en/install.fpm.configuration.php#pm.max-children>`_,
2018-04-07 16:46:37 +00:00
`pm.start_servers <https://secure.php.net/manual/en/install.fpm.configuration.php#pm.start-servers>`_,
`pm.min_spare_servers <https://secure.php.net/manual/en/install.fpm.configuration.php#pm.min-spare-servers>`_
and
`pm.max_spare_servers <https://secure.php.net/manual/en/install.fpm.configuration.php#pm.max-spare-servers>`_
of PHP-FPM 5.6 on pool ``www``.
.. code-block:: bash
2018-06-03 18:45:01 +00:00
# Navigate to the Devilbox directory
host> cd path/to/devilbox
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
# Navigate to PHP 5.6 config directory
host> cd cfg/php-fpm-5.6
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
# Create new conf file
host> touch www_server.conf
2018-04-07 16:46:37 +00:00
Now add the following content to the file:
.. code-block:: ini
2018-06-03 18:45:01 +00:00
:caption: www_server.conf
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
[www]
; Pool config
pm = dynamic
pm.max_children = 10
pm.start_servers = 3
pm.min_spare_servers = 2
pm.max_spare_servers = 5
2018-04-07 16:46:37 +00:00
.. important:: Note the ``[www]`` section.
In order to apply the changes you need to restart the Devilbox.
Set non-overwritable php.ini values for PHP 7.0
-----------------------------------------------
You can also set ``php.ini`` values that cannot be overwritten by ``php.ini`` or the ``ini_set()``
function of PHP. This might be useful to make sure a specific value is enforced and will not be
changed by some PHP frameworks on-the-fly.
This is achieved by ``php_admin_flag`` and ``php_admin_value`` that are parsed directly to PHP-FPM.
.. seealso:: https://secure.php.net/manual/en/install.fpm.configuration.php
The following example will disable built-in PHP functions globally and non-overwriteable for PHP 7.0.
.. code-block:: bash
2018-06-03 18:45:01 +00:00
# Navigate to the Devilbox directory
host> cd path/to/devilbox
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
# Navigate to PHP 7.0 config directory
host> cd cfg/php-fpm-7.0
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
# Create new conf file
host> touch admin.conf
2018-04-07 16:46:37 +00:00
Now add the following content to the file:
.. code-block:: ini
2018-06-03 18:45:01 +00:00
:caption: admin.conf
2018-04-07 16:46:37 +00:00
2018-06-03 18:45:01 +00:00
[www]
php_admin_value[disable_functions] = link,symlink,popen,exec,system,shell_exec
2018-04-07 16:46:37 +00:00
.. important:: Note the ``[www]`` section.
.. important::
2018-06-03 18:45:01 +00:00
This kind of setting only has affects PHP files served through PHP-FPM, when you run php
on the command line, this setting will be ignored.
2018-04-07 16:46:37 +00:00
.. important::
2018-06-03 18:45:01 +00:00
Be aware that none of your projects can use the above disabled functions anymore.
They will simply not exist for PHP 7.0 after that configuration took affect.
2018-04-07 16:46:37 +00:00
In order to apply the changes you need to restart the Devilbox.