The following settings files in the project codebase can be used to override default PHP settings:
.docksal/etc/php/php.ini
- global PHP (web and cli) settings overrides.docksal/etc/php/php-fpm.conf
- PHP-FPM (web) overrides on top of what’s set globallySome PHP-FPM (web) settings set by default in the cli container cannot be overridden via php.ini
.
The following settings have to be overridden using the php_admin_value
directive in php-fpm.conf
:
memory_limit
max_execution_time
upload_max_filesize
post_max_size
max_input_vars
It is recommended to add PHP settings overrides in both php.ini
and php-fpm.conf
at the same time.
You can find example settings overrides here.
Once settings are in place, apply changes with fin project restart
(fin p restart
).
Different PHP versions are handled via using different cli
service images.
When using the default stack (a custom project stack is not defined in .docksal/docksal.yml
), switching can be done
via the CLI_IMAGE
variable in .docksal/docksal.env
, e.g.:
CLI_IMAGE='docksal/cli:2.6-php7.1'
This can also be set with fin config set
.
fin config set CLI_IMAGE='docksal/cli:2.6-php7.1'
Run fin project reset cli
(fin p reset cli
) to properly reset and update the cli
service.
Available PHP versions: 7.1, 7.2, 7.3 supported, and 7.0, 5.6 deprecated. Check the list of the available CLI images for the full list.
There are also “edge” versions available that contain code from ongoing updates, but may not be stable. Don’t switch to an edge image unless directed to do so by the Docksal team for testing purposes only.
See documentation for projects using a custom stack configuration.