Advertisement
Guest User

PHP-FPM conf

a guest
May 3rd, 2014
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.08 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 = /var/run/php-fpm/php-fpm.sock
  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 0660
  31. ;listen.owner = nobody
  32. ;listen.group = nobody
  33. ;listen.mode = 0660
  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 = nginx
  40. ; RPM: Keep a group allowed to write in log dir.
  41. group = nginx
  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 = dynamic
  61.  
  62. ; The number of child processes to be created when pm is set to 'static' and the
  63. ; maximum number of child processes to be created when pm is set to 'dynamic'.
  64. ; This value sets the limit on the number of simultaneous requests that will be
  65. ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
  66. ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
  67. ; CGI.
  68. ; Note: Used when pm is set to either 'static' or 'dynamic'
  69. ; Note: This value is mandatory.
  70. pm.max_children = 20
  71.  
  72. ; The number of child processes created on startup.
  73. ; Note: Used only when pm is set to 'dynamic'
  74. ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
  75. pm.start_servers = 2
  76.  
  77. ; The desired minimum number of idle server processes.
  78. ; Note: Used only when pm is set to 'dynamic'
  79. ; Note: Mandatory when pm is set to 'dynamic'
  80. pm.min_spare_servers = 2
  81.  
  82. ; The desired maximum number of idle server processes.
  83. ; Note: Used only when pm is set to 'dynamic'
  84. ; Note: Mandatory when pm is set to 'dynamic'
  85. pm.max_spare_servers = 4
  86.  
  87. ; The number of requests each child process should execute before respawning.
  88. ; This can be useful to work around memory leaks in 3rd party libraries. For
  89. ; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
  90. ; Default Value: 0
  91. pm.max_requests = 500
  92.  
  93. ; The URI to view the FPM status page. If this value is not set, no URI will be
  94. ; recognized as a status page. By default, the status page shows the following
  95. ; information:
  96. ; accepted conn - the number of request accepted by the pool;
  97. ; pool - the name of the pool;
  98. ; process manager - static or dynamic;
  99. ; idle processes - the number of idle processes;
  100. ; active processes - the number of active processes;
  101. ; total processes - the number of idle + active processes.
  102. ; The values of 'idle processes', 'active processes' and 'total processes' are
  103. ; updated each second. The value of 'accepted conn' is updated in real time.
  104. ; Example output:
  105. ; accepted conn: 12073
  106. ; pool: www
  107. ; process manager: static
  108. ; idle processes: 35
  109. ; active processes: 65
  110. ; total processes: 100
  111. ; By default the status page output is formatted as text/plain. Passing either
  112. ; 'html' or 'json' as a query string will return the corresponding output
  113. ; syntax. Example:
  114. ; http://www.foo.bar/status
  115. ; http://www.foo.bar/status?json
  116. ; http://www.foo.bar/status?html
  117. ; Note: The value must start with a leading slash (/). The value can be
  118. ; anything, but it may not be a good idea to use the .php extension or it
  119. ; may conflict with a real PHP file.
  120. ; Default Value: not set
  121. ;pm.status_path = /status
  122.  
  123. ; The ping URI to call the monitoring page of FPM. If this value is not set, no
  124. ; URI will be recognized as a ping page. This could be used to test from outside
  125. ; that FPM is alive and responding, or to
  126. ; - create a graph of FPM availability (rrd or such);
  127. ; - remove a server from a group if it is not responding (load balancing);
  128. ; - trigger alerts for the operating team (24/7).
  129. ; Note: The value must start with a leading slash (/). The value can be
  130. ; anything, but it may not be a good idea to use the .php extension or it
  131. ; may conflict with a real PHP file.
  132. ; Default Value: not set
  133. ;ping.path = /ping
  134.  
  135. ; This directive may be used to customize the response of a ping request. The
  136. ; response is formatted as text/plain with a 200 response code.
  137. ; Default Value: pong
  138. ;ping.response = pong
  139.  
  140. ; The timeout for serving a single request after which the worker process will
  141. ; be killed. This option should be used when the 'max_execution_time' ini option
  142. ; does not stop script execution for some reason. A value of '0' means 'off'.
  143. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  144. ; Default Value: 0
  145. request_terminate_timeout = 300
  146.  
  147. ; The timeout for serving a single request after which a PHP backtrace will be
  148. ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
  149. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  150. ; Default Value: 0
  151. request_slowlog_timeout = 120s
  152.  
  153. ; The log file for slow requests
  154. ; Default Value: not set
  155. ; Note: slowlog is mandatory if request_slowlog_timeout is set
  156. slowlog = /var/log/php-fpm/www-slow.log
  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. ; Limits the extensions of the main script FPM will allow to parse. This can
  185. ; prevent configuration mistakes on the web server side. You should only limit
  186. ; FPM to .php extensions to prevent malicious users to use other extensions to
  187. ; exectute php code.
  188. ; Note: set an empty value to allow all extensions.
  189. ; Default Value: .php
  190. ;security.limit_extensions = .php .php3 .php4 .php5
  191.  
  192. ; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
  193. ; the current environment.
  194. ; Default Value: clean env
  195. ;env[HOSTNAME] = $HOSTNAME
  196. ;env[PATH] = /usr/local/bin:/usr/bin:/bin
  197. ;env[TMP] = /tmp
  198. ;env[TMPDIR] = /tmp
  199. ;env[TEMP] = /tmp
  200.  
  201. ; Additional php.ini defines, specific to this pool of workers. These settings
  202. ; overwrite the values previously defined in the php.ini. The directives are the
  203. ; same as the PHP SAPI:
  204. ; php_value/php_flag - you can set classic ini defines which can
  205. ; be overwritten from PHP call 'ini_set'.
  206. ; php_admin_value/php_admin_flag - these directives won't be overwritten by
  207. ; PHP call 'ini_set'
  208. ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
  209.  
  210. ; Defining 'extension' will load the corresponding shared extension from
  211. ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
  212. ; overwrite previously defined php.ini values, but will append the new value
  213. ; instead.
  214.  
  215. ; Default Value: nothing is defined by default except the values in php.ini and
  216. ; specified at startup with the -d argument
  217. ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
  218. ;php_flag[display_errors] = off
  219. php_admin_value[error_log] = /var/log/php-fpm/www-error.log
  220. php_admin_flag[log_errors] = on
  221. ;php_admin_value[memory_limit] = 128M
  222.  
  223. ; Set session path to a directory owned by process user
  224. php_value[session.save_handler] = files
  225. php_value[session.save_path] = /var/lib/php/session
  226. php_value[soap.wsdl_cache_dir] = /var/lib/php/wsdlcache
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement