Diff for /embedaddon/php/sapi/fpm/php-fpm.conf.in between versions 1.1.1.2.2.1 and 1.1.1.3

version 1.1.1.2.2.1, 2013/07/22 01:44:22 version 1.1.1.3, 2013/07/22 01:32:13
Line 10 Line 10
 ; files from a glob(3) pattern. This directive can be used everywhere in the  ; files from a glob(3) pattern. This directive can be used everywhere in the
 ; file.  ; file.
 ; Relative path can also be used. They will be prefixed by:  ; Relative path can also be used. They will be prefixed by:
;  - the global prefix if it's been set (-p arguement);  - the global prefix if it's been set (-p argument)
 ;  - @prefix@ otherwise  ;  - @prefix@ otherwise
 ;include=etc/fpm.d/*.conf  ;include=etc/fpm.d/*.conf
   
Line 76 Line 76
 ; Default Value: 0  ; Default Value: 0
 ; process.max = 128  ; process.max = 128
   
   ; Specify the nice(2) priority to apply to the master process (only if set)
   ; The value can vary from -19 (highest priority) to 20 (lower priority)
   ; Note: - It will only work if the FPM master process is launched as root
   ;       - The pool process will inherit the master process priority
   ;         unless it specified otherwise
   ; Default Value: no set
   ; process.priority = -19
   
 ; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.  ; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
 ; Default Value: yes  ; Default Value: yes
 ;daemonize = yes  ;daemonize = yes
Line 97 Line 105
 ; - /dev/poll  (Solaris >= 7)  ; - /dev/poll  (Solaris >= 7)
 ; - port       (Solaris >= 10)  ; - port       (Solaris >= 10)
 ; Default Value: not set (auto detection)  ; Default Value: not set (auto detection)
; events.mechanism = epoll;events.mechanism = epoll
   
   ; When FPM is build with systemd integration, specify the interval,
   ; in second, between health report notification to systemd.
   ; Set to 0 to disable.
   ; Available Units: s(econds), m(inutes), h(ours)
   ; Default Unit: seconds
   ; Default value: 10
   ;systemd_interval = 10
   
 ;;;;;;;;;;;;;;;;;;;;  ;;;;;;;;;;;;;;;;;;;;
 ; Pool Definitions ;   ; Pool Definitions ; 
 ;;;;;;;;;;;;;;;;;;;;  ;;;;;;;;;;;;;;;;;;;;
Line 162  listen = 127.0.0.1:9000 Line 178  listen = 127.0.0.1:9000
 ; accepted from any ip address.  ; accepted from any ip address.
 ; Default Value: any  ; Default Value: any
 ;listen.allowed_clients = 127.0.0.1  ;listen.allowed_clients = 127.0.0.1
   
   ; Specify the nice(2) priority to apply to the pool processes (only if set)
   ; The value can vary from -19 (highest priority) to 20 (lower priority)
   ; Note: - It will only work if the FPM master process is launched as root
   ;       - The pool processes will inherit the master process priority
   ;         unless it specified otherwise
   ; Default Value: no set
   ; priority = -19
   
 ; Choose how the process manager will control the number of child processes.  ; Choose how the process manager will control the number of child processes.
 ; Possible Values:  ; Possible Values:

Removed from v.1.1.1.2.2.1  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>