Diff for /embedaddon/php/sapi/fpm/php-fpm.conf.in between versions 1.1.1.4 and 1.1.1.5

version 1.1.1.4, 2013/10/14 08:02:45 version 1.1.1.5, 2014/06/15 20:04:02
Line 166  listen = 127.0.0.1:9000 Line 166  listen = 127.0.0.1:9000
 ; permissions must be set in order to allow connections from a web server. Many  ; permissions must be set in order to allow connections from a web server. Many
 ; BSD-derived systems allow connections regardless of permissions.   ; BSD-derived systems allow connections regardless of permissions. 
 ; Default Values: user and group are set as the running user  ; Default Values: user and group are set as the running user
;                 mode is set to 0666;                 mode is set to 0660
 ;listen.owner = @php_fpm_user@  ;listen.owner = @php_fpm_user@
 ;listen.group = @php_fpm_group@  ;listen.group = @php_fpm_group@
;listen.mode = 0666;listen.mode = 0660
     
 ; List of ipv4 addresses of FastCGI clients which are allowed to connect.  ; List of ipv4 addresses of FastCGI clients which are allowed to connect.
 ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original  ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
Line 185  listen = 127.0.0.1:9000 Line 185  listen = 127.0.0.1:9000
 ;       - The pool processes will inherit the master process priority  ;       - The pool processes will inherit the master process priority
 ;         unless it specified otherwise  ;         unless it specified otherwise
 ; Default Value: no set  ; Default Value: no set
; priority = -19; process.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:
Line 474  pm.max_spare_servers = 3 Line 474  pm.max_spare_servers = 3
 ; process time (several ms).  ; process time (several ms).
 ; Default Value: no  ; Default Value: no
 ;catch_workers_output = yes  ;catch_workers_output = yes
   
   ; Clear environment in FPM workers
   ; Prevents arbitrary environment variables from reaching FPM worker processes
   ; by clearing the environment in workers before env vars specified in this
   ; pool configuration are added.
   ; Setting to "no" will make all environment variables available to PHP code
   ; via getenv(), $_ENV and $_SERVER.
   ; Default Value: yes
   ;clear_env = no
   
 ; Limits the extensions of the main script FPM will allow to parse. This can  ; Limits the extensions of the main script FPM will allow to parse. This can
 ; prevent configuration mistakes on the web server side. You should only limit  ; prevent configuration mistakes on the web server side. You should only limit

Removed from v.1.1.1.4  
changed lines
  Added in v.1.1.1.5


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