Advertisement
Guest User

php-fpm-conf

a guest
Dec 9th, 2011
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.21 KB | None | 0 0
  1. <?xml version="1.0" ?>
  2. <configuration>
  3.  
  4. All relative paths in this config are relative to php's install prefix
  5.  
  6. <section name="global_options">
  7.  
  8. Pid file
  9. <value name="pid_file">/usr/local/logs/php-fpm.pid</value>
  10.  
  11. Error log file
  12. <value name="error_log">/usr/local/logs/php-fpm.log</value>
  13.  
  14. Log level
  15. <value name="log_level">notice</value>
  16.  
  17. When this amount of php processes exited with SIGSEGV or SIGBUS ...
  18. <value name="emergency_restart_threshold">10</value>
  19.  
  20. ... in a less than this interval of time, a graceful restart will be initiated.
  21. Useful to work around accidental curruptions in accelerator's shared memory.
  22. <value name="emergency_restart_interval">1m</value>
  23.  
  24. Time limit on waiting child's reaction on signals from master
  25. <value name="process_control_timeout">5s</value>
  26.  
  27. Set to 'no' to debug fpm
  28. <value name="daemonize">yes</value>
  29.  
  30. </section>
  31.  
  32. <workers>
  33.  
  34. <section name="pool">
  35.  
  36. Name of pool. Used in logs and stats.
  37. <value name="name">default</value>
  38.  
  39. Address to accept fastcgi requests on.
  40. Valid syntax is 'ip.ad.re.ss:port' or just 'port' or '/path/to/unix/socket'
  41. <value name="listen_address">127.0.0.1:9000</value>
  42.  
  43. <value name="listen_options">
  44.  
  45. Set listen(2) backlog
  46. <value name="backlog">-1</value>
  47.  
  48. Set permissions for unix socket, if one used.
  49. In Linux read/write permissions must be set in order to allow connections from web server.
  50. Many BSD-derrived systems allow connections regardless of permissions.
  51. <value name="owner"></value>
  52. <value name="group"></value>
  53. <value name="mode">0666</value>
  54. </value>
  55.  
  56. Additional php.ini defines, specific to this pool of workers.
  57. <value name="php_defines">
  58. <!-- <value name="sendmail_path">/usr/sbin/sendmail -t -i</value> -->
  59. <!-- <value name="display_errors">0</value> -->
  60. </value>
  61.  
  62. Unix user of processes
  63. <value name="user">nobody</value>
  64.  
  65. Unix group of processes
  66. <value name="group">nobody</value>
  67.  
  68. Process manager settings
  69. <value name="pm">
  70.  
  71. Sets style of controling worker process count.
  72. Valid values are 'static' and 'apache-like'
  73. <value name="style">apache-like</value>
  74.  
  75. Sets the limit on the number of simultaneous requests that will be served.
  76. Equivalent to Apache MaxClients directive.
  77. Equivalent to PHP_FCGI_CHILDREN environment in original php.fcgi
  78. Used with any pm_style.
  79. <value name="max_children">35</value>
  80.  
  81. Settings group for 'apache-like' pm style
  82. <value name="apache_like">
  83.  
  84. Sets the number of server processes created on startup.
  85. Used only when 'apache-like' pm_style is selected
  86. <value name="StartServers">20</value>
  87.  
  88. Sets the desired minimum number of idle server processes.
  89. Used only when 'apache-like' pm_style is selected
  90. <value name="MinSpareServers">5</value>
  91.  
  92. Sets the desired maximum number of idle server processes.
  93. Used only when 'apache-like' pm_style is selected
  94. <value name="MaxSpareServers">35</value>
  95.  
  96. </value>
  97.  
  98. </value>
  99.  
  100. The timeout (in seconds) for serving a single request after which the worker process will be terminated
  101. Should be used when 'max_execution_time' ini option does not stop script execution for some reason
  102. '0s' means 'off'
  103. <value name="request_terminate_timeout">0s</value>
  104.  
  105. The timeout (in seconds) for serving of single request after which a php backtrace will be dumped to slow.log file
  106. '0s' means 'off'
  107. <value name="request_slowlog_timeout">0s</value>
  108.  
  109. The log file for slow requests
  110. <value name="slowlog">logs/slow.log</value>
  111.  
  112. Set open file desc rlimit
  113. <value name="rlimit_files">8192</value>
  114.  
  115. Set max core size rlimit
  116. <value name="rlimit_core">0</value>
  117.  
  118. Chroot to this directory at the start, absolute path
  119. <value name="chroot"></value>
  120.  
  121. Chdir to this directory at the start, absolute path
  122. <value name="chdir"></value>
  123.  
  124. Redirect workers' stdout and stderr into main error log.
  125. If not set, they will be redirected to /dev/null, according to FastCGI specs
  126. <value name="catch_workers_output">yes</value>
  127.  
  128. How much requests each process should execute before respawn.
  129. Useful to work around memory leaks in 3rd party libraries.
  130. For endless request processing please specify 0
  131. Equivalent to PHP_FCGI_MAX_REQUESTS
  132. <value name="max_requests">1000</value>
  133.  
  134. Comma separated list of ipv4 addresses of FastCGI clients that allowed to connect.
  135. Equivalent to FCGI_WEB_SERVER_ADDRS environment in original php.fcgi (5.2.2+)
  136. Makes sense only with AF_INET listening socket.
  137. <value name="allowed_clients">127.0.0.1</value>
  138.  
  139. Pass environment variables like LD_LIBRARY_PATH
  140. All $VARIABLEs are taken from current environment
  141. <value name="environment">
  142. <value name="HOSTNAME">$HOSTNAME</value>
  143. <value name="PATH">/usr/local/bin:/usr/bin:/bin</value>
  144. <value name="TMP">/tmp</value>
  145. <value name="TMPDIR">/tmp</value>
  146. <value name="TEMP">/tmp</value>
  147. <value name="OSTYPE">$OSTYPE</value>
  148. <value name="MACHTYPE">$MACHTYPE</value>
  149. <value name="MALLOC_CHECK_">2</value>
  150. </value>
  151.  
  152. </section>
  153.  
  154. </workers>
  155.  
  156. </configuration>
  157.  
  158.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement