Ticket #26039: patch-fpm-conf.diff

File patch-fpm-conf.diff, 1.4 KB (added by andy@…, 14 years ago)

new necessary patchfile

  • (a) a/sapi/fpm/php-fpm.conf.in.orig vs. (b) b/sapi/fpm/php-fpm.conf.in

    a b  
    1717[global]
    1818; Pid file
    1919; Default Value: none
    20 ;pid = @EXPANDED_LOCALSTATEDIR@/run/php-fpm.pid
     20pid = @EXPANDED_LOCALSTATEDIR@/run/php-fpm.pid
    2121
    2222; Error log file
    2323; Default Value: @EXPANDED_LOCALSTATEDIR@/log/php-fpm.log
     
    5050
    5151; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
    5252; Default Value: yes
    53 ;daemonize = yes
     53daemonize = no
    5454
    5555;;;;;;;;;;;;;;;;;;;;
    5656; Pool Definitions ;
     
    133133; The number of child processes created on startup.
    134134; Note: Used only when pm is set to 'dynamic'
    135135; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
    136 ;pm.start_servers = 20
     136pm.start_servers = 20
    137137
    138138; The desired minimum number of idle server processes.
    139139; Note: Used only when pm is set to 'dynamic'
    140140; Note: Mandatory when pm is set to 'dynamic'
    141 ;pm.min_spare_servers = 5
     141pm.min_spare_servers = 5
    142142
    143143; The desired maximum number of idle server processes.
    144144; Note: Used only when pm is set to 'dynamic'
    145145; Note: Mandatory when pm is set to 'dynamic'
    146 ;pm.max_spare_servers = 35
     146pm.max_spare_servers = 35
    147147 
    148148; The number of requests each child process should execute before respawning.
    149149; This can be useful to work around memory leaks in 3rd party libraries. For