Advertisement
Guest User

Untitled

a guest
Jul 30th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.47 KB | None | 0 0
  1. ; Start a new pool named 'www'.
  2. [www]
  3.  
  4. ; The address on which to accept FastCGI requests.
  5. ; Valid syntaxes are:
  6. ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
  7. ; a specific port;
  8. ; 'port' - to listen on a TCP socket to all addresses on a
  9. ; specific port;
  10. ; '/path/to/unix/socket' - to listen on a unix socket.
  11. ; Note: This value is mandatory.
  12. listen = 127.0.0.1:9000
  13.  
  14. ; Set listen(2) backlog. A value of '-1' means unlimited.
  15. ; Default Value: -1
  16. ;listen.backlog = -1
  17.  
  18. ; List of ipv4 addresses of FastCGI clients which are allowed to connect.
  19. ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
  20. ; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
  21. ; must be separated by a comma. If this value is left blank, connections will be
  22. ; accepted from any ip address.
  23. ; Default Value: any
  24. listen.allowed_clients = 127.0.0.1
  25.  
  26. ; Set permissions for unix socket, if one is used. In Linux, read/write
  27. ; permissions must be set in order to allow connections from a web server. Many
  28. ; BSD-derived systems allow connections regardless of permissions.
  29. ; Default Values: user and group are set as the running user
  30. ; mode is set to 0666
  31. ;listen.owner = nobody
  32. ;listen.group = nobody
  33. ;listen.mode = 0666
  34.  
  35. ; Unix user/group of processes
  36. ; Note: The user is mandatory. If the group is not set, the default user's group
  37. ; will be used.
  38. ; RPM: apache Choosed to be able to access some dir as httpd
  39. user = php
  40. ; RPM: Keep a group allowed to write in log dir.
  41. group = php
  42.  
  43. ; Choose how the process manager will control the number of child processes.
  44. ; Possible Values:
  45. ; static - a fixed number (pm.max_children) of child processes;
  46. ; dynamic - the number of child processes are set dynamically based on the
  47. ; following directives:
  48. ; pm.max_children - the maximum number of children that can
  49. ; be alive at the same time.
  50. ; pm.start_servers - the number of children created on startup.
  51. ; pm.min_spare_servers - the minimum number of children in 'idle'
  52. ; state (waiting to process). If the number
  53. ; of 'idle' processes is less than this
  54. ; number then some children will be created.
  55. ; pm.max_spare_servers - the maximum number of children in 'idle'
  56. ; state (waiting to process). If the number
  57. ; of 'idle' processes is greater than this
  58. ; number then some children will be killed.
  59. ; Note: This value is mandatory.
  60. pm = ondemand
  61. pm.process_idle_timeout = 3s
  62.  
  63. ; The number of child processes to be created when pm is set to 'static' and the
  64. ; maximum number of child processes to be created when pm is set to 'dynamic'.
  65. ; This value sets the limit on the number of simultaneous requests that will be
  66. ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
  67. ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
  68. ; CGI.
  69. ; Note: Used when pm is set to either 'static' or 'dynamic'
  70. ; Note: This value is mandatory.
  71. pm.max_children = 10
  72.  
  73. ; The number of child processes created on startup.
  74. ; Note: Used only when pm is set to 'dynamic'
  75. ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
  76. pm.start_servers = 1
  77.  
  78. ; The desired minimum number of idle server processes.
  79. ; Note: Used only when pm is set to 'dynamic'
  80. ; Note: Mandatory when pm is set to 'dynamic'
  81. pm.min_spare_servers = 1
  82.  
  83. ; The desired maximum number of idle server processes.
  84. ; Note: Used only when pm is set to 'dynamic'
  85. ; Note: Mandatory when pm is set to 'dynamic'
  86. pm.max_spare_servers = 1
  87.  
  88. ; The number of requests each child process should execute before respawning.
  89. ; This can be useful to work around memory leaks in 3rd party libraries. For
  90. ; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
  91. ; Default Value: 0
  92. pm.max_requests = 500
  93.  
  94. ; The URI to view the FPM status page. If this value is not set, no URI will be
  95. ; recognized as a status page. By default, the status page shows the following
  96. ; information:
  97. ; accepted conn - the number of request accepted by the pool;
  98. ; pool - the name of the pool;
  99. ; process manager - static or dynamic;
  100. ; idle processes - the number of idle processes;
  101. ; active processes - the number of active processes;
  102. ; total processes - the number of idle + active processes.
  103. ; The values of 'idle processes', 'active processes' and 'total processes' are
  104. ; updated each second. The value of 'accepted conn' is updated in real time.
  105. ; Example output:
  106. ; accepted conn: 12073
  107. ; pool: www
  108. ; process manager: static
  109. ; idle processes: 35
  110. ; active processes: 65
  111. ; total processes: 100
  112. ; By default the status page output is formatted as text/plain. Passing either
  113. ; 'html' or 'json' as a query string will return the corresponding output
  114. ; syntax. Example:
  115. ; http://www.foo.bar/status
  116. ; http://www.foo.bar/status?json
  117. ; http://www.foo.bar/status?html
  118. ; Note: The value must start with a leading slash (/). The value can be
  119. ; anything, but it may not be a good idea to use the .php extension or it
  120. ; may conflict with a real PHP file.
  121. ; Default Value: not set
  122. ;pm.status_path = /status
  123.  
  124. ; The ping URI to call the monitoring page of FPM. If this value is not set, no
  125. ; URI will be recognized as a ping page. This could be used to test from outside
  126. ; that FPM is alive and responding, or to
  127. ; - create a graph of FPM availability (rrd or such);
  128. ; - remove a server from a group if it is not responding (load balancing);
  129. ; - trigger alerts for the operating team (24/7).
  130. ; Note: The value must start with a leading slash (/). The value can be
  131. ; anything, but it may not be a good idea to use the .php extension or it
  132. ; may conflict with a real PHP file.
  133. ; Default Value: not set
  134. ;ping.path = /ping
  135.  
  136. ; This directive may be used to customize the response of a ping request. The
  137. ; response is formatted as text/plain with a 200 response code.
  138. ; Default Value: pong
  139. ;ping.response = pong
  140.  
  141. ; The timeout for serving a single request after which the worker process will
  142. ; be killed. This option should be used when the 'max_execution_time' ini option
  143. ; does not stop script execution for some reason. A value of '0' means 'off'.
  144. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  145. ; Default Value: 0
  146. ;request_terminate_timeout = 0
  147.  
  148. ; The timeout for serving a single request after which a PHP backtrace will be
  149. ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
  150. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  151. ; Default Value: 0
  152. ;request_slowlog_timeout = 0
  153.  
  154. ; The log file for slow requests
  155. ; Default Value: /var/log/php-fpm.log.slow
  156. ;slowlog = /var/log/php-fpm.log.slow
  157.  
  158. ; Set open file descriptor rlimit.
  159. ; Default Value: system defined value
  160. ;rlimit_files = 1024
  161.  
  162. ; Set max core size rlimit.
  163. ; Possible Values: 'unlimited' or an integer greater or equal to 0
  164. ; Default Value: system defined value
  165. ;rlimit_core = 0
  166.  
  167. ; Chroot to this directory at the start. This value must be defined as an
  168. ; absolute path. When this value is not set, chroot is not used.
  169. ; Note: chrooting is a great security feature and should be used whenever
  170. ; possible. However, all PHP paths will be relative to the chroot
  171. ; (error_log, sessions.save_path, ...).
  172. ; Default Value: not set
  173. ;chroot =
  174.  
  175. ; Chdir to this directory at the start. This value must be an absolute path.
  176. ; Default Value: current directory or / when chroot
  177. ;chdir = /var/www
  178.  
  179. ; Redirect worker stdout and stderr into main error log. If not set, stdout and
  180. ; stderr will be redirected to /dev/null according to FastCGI specs.
  181. ; Default Value: no
  182. ;catch_workers_output = yes
  183.  
  184. ; Pass environment variables like LD_LIBRARY_PATH. All are taken from
  185. ; the current environment.
  186. ; Default Value: clean env
  187. ;env[HOSTNAME] = nl
  188. ;env[PATH] = /usr/local/bin:/usr/bin:/bin
  189. ;env[TMP] = /tmp
  190. ;env[TMPDIR] = /tmp
  191. ;env[TEMP] = /tmp
  192.  
  193. ; Additional php.ini defines, specific to this pool of workers. These settings
  194. ; overwrite the values previously defined in the php.ini. The directives are the
  195. ; same as the PHP SAPI:
  196. ; php_value/php_flag - you can set classic ini defines which can
  197. ; be overwritten from PHP call 'ini_set'.
  198. ; php_admin_value/php_admin_flag - these directives won't be overwritten by
  199. ; PHP call 'ini_set'
  200. ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
  201.  
  202. ; Defining 'extension' will load the corresponding shared extension from
  203. ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
  204. ; overwrite previously defined php.ini values, but will append the new value
  205. ; instead.
  206.  
  207. ; Default Value: nothing is defined by default except the values in php.ini and
  208. ; specified at startup with the -d argument
  209. ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
  210. ;php_flag[display_errors] = off
  211. php_admin_value[error_log] = /var/log/php-fpm/www-error.log
  212. php_admin_flag[log_errors] = on
  213. ;php_admin_value[memory_limit] = 32M
  214. php_admin_value[upload_max_filesize] = 32M
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement