; Vereego PHP-FPM Pool Configuration [www] ; Unix user/group of processes user = nobody group = nobody ; Address to accept FastCGI requests listen = 0.0.0.0:9000 ; Set permissions for unix socket listen.owner = nobody listen.group = nobody listen.mode = 0660 ; Process manager configuration pm = dynamic pm.max_children = 50 pm.start_servers = 5 pm.min_spare_servers = 5 pm.max_spare_servers = 35 pm.max_requests = 500 ; Process idle timeout pm.process_idle_timeout = 10s ; Status page pm.status_path = /status ; Ping path for health check ping.path = /ping ping.response = pong ; Slow log slowlog = /var/log/php/slow.log request_slowlog_timeout = 5s ; Request termination timeout request_terminate_timeout = 60s ; Catch worker output catch_workers_output = yes decorate_workers_output = no ; Clear environment clear_env = no ; Security limit extensions security.limit_extensions = .php ; Environment variables env[HOSTNAME] = $HOSTNAME env[PATH] = /usr/local/bin:/usr/bin:/bin env[TMP] = /tmp env[TMPDIR] = /tmp env[TEMP] = /tmp