Fix bug when installing php-fpm. Absolute path is required.

ERROR: Unable to create or open slowlog(/usr/log/www.log.slow): No such file or directory (2)
This commit is contained in:
Tristan PILAT 2018-06-18 10:18:55 +02:00
parent fb4a254b9c
commit 469d9e6984
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
- { option: "pm", value: "ondemand" }
- { option: "pm.max_children", value: "100" }
- { option: "pm.process_idle_timeout", value: "10s" }
- { option: "slowlog", value: "log/$pool.log.slow" }
- { option: "slowlog", value: "/var/log/$pool.log.slow" }
- { option: "request_slowlog_timeout", value: "5s" }
- { option: "pm.status_path", value: "/fpm_status" }
- { option: "request_terminate_timeout", value: "60s" }