2067da
;;;;;;;;;;;;;;;;;;;;;
2067da
; FPM Configuration ;
2067da
;;;;;;;;;;;;;;;;;;;;;
2067da
2067da
; All relative paths in this configuration file are relative to PHP's install
2067da
; prefix.
2067da
2067da
; Include one or more files. If glob(3) exists, it is used to include a bunch of
2067da
; files from a glob(3) pattern. This directive can be used everywhere in the
2067da
; file.
2067da
include=/etc/php-fpm.d/*.conf
2067da
2067da
;;;;;;;;;;;;;;;;;;
2067da
; Global Options ;
2067da
;;;;;;;;;;;;;;;;;;
2067da
2067da
[global]
2067da
; Pid file
2067da
; Default Value: none
2067da
pid = /run/php-fpm/php-fpm.pid
2067da
2067da
; Error log file
2067da
; Default Value: /var/log/php-fpm.log
2067da
error_log = /var/log/php-fpm/error.log
2067da
2067da
; Log level
2067da
; Possible Values: alert, error, warning, notice, debug
2067da
; Default Value: notice
2067da
;log_level = notice
2067da
2067da
; If this number of child processes exit with SIGSEGV or SIGBUS within the time
2067da
; interval set by emergency_restart_interval then FPM will restart. A value
2067da
; of '0' means 'Off'.
2067da
; Default Value: 0
2067da
;emergency_restart_threshold = 0
2067da
2067da
; Interval of time used by emergency_restart_interval to determine when 
2067da
; a graceful restart will be initiated.  This can be useful to work around
2067da
; accidental corruptions in an accelerator's shared memory.
2067da
; Available Units: s(econds), m(inutes), h(ours), or d(ays)
2067da
; Default Unit: seconds
2067da
; Default Value: 0
2067da
;emergency_restart_interval = 0
2067da
2067da
; Time limit for child processes to wait for a reaction on signals from master.
2067da
; Available units: s(econds), m(inutes), h(ours), or d(ays)
2067da
; Default Unit: seconds
2067da
; Default Value: 0
2067da
;process_control_timeout = 0
2067da
2067da
; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
2067da
; Default Value: yes
2067da
daemonize = no
2067da
2067da
;;;;;;;;;;;;;;;;;;;;
2067da
; Pool Definitions ; 
2067da
;;;;;;;;;;;;;;;;;;;;
2067da
2067da
; See /etc/php-fpm.d/*.conf
2067da