diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e797252..a6a31877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The **patch** part changes incrementally at each release. * nagios-nrpe: change required status code for http and https check * redmine: use custom errors-pages in Nginx vhost * nagios-nrpe: check_load is now based on ansible_processor_vcpus +* php: Stop enforcing /var/www/html as chroot while we use /var/www ### Fixed * rbenv: add check_mode for check rbenv and ruby versions diff --git a/php/tasks/config_fpm.yml b/php/tasks/config_fpm.yml index 45cab1f1..b92d24f5 100644 --- a/php/tasks/config_fpm.yml +++ b/php/tasks/config_fpm.yml @@ -49,7 +49,7 @@ - { option: "request_slowlog_timeout", value: "5s" } - { option: "pm.status_path", value: "/fpm_status" } - { option: "request_terminate_timeout", value: "60s" } - - { option: "chroot", value: "/var/www/html" } + - { option: "chroot", value: "/var/www" } notify: "restart {{ php_fpm_service_name }}" when: ansible_distribution_major_version | version_compare('9', '>=')