php: Stop enforcing /var/www/html as chroot while we use /var/www.....

This commit is contained in:
Ludovic Poujol 2019-06-06 13:45:53 +02:00
parent 3e03358370
commit 20a4c082d7
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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', '>=')