phpfpm_wifiadmin.conf 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. ; Wifi Hotspot app for YunoHost
  2. ; Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. ; Contribute at https://github.com/labriqueinternet/hotspot_ynh
  4. ;
  5. ; This program is free software: you can redistribute it and/or modify
  6. ; it under the terms of the GNU Affero General Public License as published by
  7. ; the Free Software Foundation, either version 3 of the License, or
  8. ; (at your option) any later version.
  9. ;
  10. ; This program is distributed in the hope that it will be useful,
  11. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ; GNU Affero General Public License for more details.
  14. ;
  15. ; You should have received a copy of the GNU Affero General Public License
  16. ; along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. ; Start a new pool named '<TPL:PHP_NAME>'.
  18. ; the variable $pool can we used in any directive and will be replaced by the
  19. ; pool name ('www' here)
  20. [<TPL:PHP_NAME>]
  21. ; The address on which to accept FastCGI requests.
  22. ; Valid syntaxes are:
  23. ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
  24. ; a specific port;
  25. ; 'port' - to listen on a TCP socket to all addresses on a
  26. ; specific port;
  27. ; '/path/to/unix/socket' - to listen on a unix socket.
  28. ; Note: This value is mandatory.
  29. listen = /var/run/php5-fpm-<TPL:PHP_NAME>.sock
  30. ; Set permissions for unix socket, if one is used. In Linux, read/write
  31. ; permissions must be set in order to allow connections from a web server. Many
  32. ; BSD-derived systems allow connections regardless of permissions.
  33. ; Default Values: user and group are set as the running user
  34. ; mode is set to 0666
  35. listen.owner = www-data
  36. listen.group = www-data
  37. listen.mode = 0600
  38. ; Unix user/group of processes
  39. ; Note: The user is mandatory. If the group is not set, the default user's group
  40. ; will be used.
  41. user = <TPL:PHP_USER>
  42. group = <TPL:PHP_GROUP>
  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. ; The number of child processes to be created when pm is set to 'static' and the
  62. ; maximum number of child processes to be created when pm is set to 'dynamic'.
  63. ; This value sets the limit on the number of simultaneous requests that will be
  64. ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
  65. ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
  66. ; CGI.
  67. ; Note: Used when pm is set to either 'static' or 'dynamic'
  68. ; Note: This value is mandatory.
  69. pm.max_children = 6
  70. ; The number of child processes created on startup.
  71. ; Note: Used only when pm is set to 'dynamic'
  72. ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
  73. pm.start_servers = 3
  74. ; The desired minimum number of idle server processes.
  75. ; Note: Used only when pm is set to 'dynamic'
  76. ; Note: Mandatory when pm is set to 'dynamic'
  77. pm.min_spare_servers = 3
  78. ; The desired maximum 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.max_spare_servers = 5
  82. ; The number of requests each child process should execute before respawning.
  83. ; This can be useful to work around memory leaks in 3rd party libraries. For
  84. ; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
  85. ; Default Value: 0
  86. pm.max_requests = 500
  87. ; The URI to view the FPM status page. If this value is not set, no URI will be
  88. ; recognized as a status page. By default, the status page shows the following
  89. ; information:
  90. ; accepted conn - the number of request accepted by the pool;
  91. ; pool - the name of the pool;
  92. ; process manager - static or dynamic;
  93. ; idle processes - the number of idle processes;
  94. ; active processes - the number of active processes;
  95. ; total processes - the number of idle + active processes.
  96. ; max children reached - number of times, the process limit has been reached,
  97. ; when pm tries to start more children (works only for
  98. ; pm 'dynamic')
  99. ; The values of 'idle processes', 'active processes' and 'total processes' are
  100. ; updated each second. The value of 'accepted conn' is updated in real time.
  101. ; Example output:
  102. ; accepted conn: 12073
  103. ; pool: www
  104. ; process manager: static
  105. ; idle processes: 35
  106. ; active processes: 65
  107. ; total processes: 100
  108. ; max children reached: 1
  109. ; By default the status page output is formatted as text/plain. Passing either
  110. ; 'html' or 'json' as a query string will return the corresponding output
  111. ; syntax. Example:
  112. ; http://www.foo.bar/status
  113. ; http://www.foo.bar/status?json
  114. ; http://www.foo.bar/status?html
  115. ; Note: The value must start with a leading slash (/). The value can be
  116. ; anything, but it may not be a good idea to use the .php extension or it
  117. ; may conflict with a real PHP file.
  118. ; Default Value: not set
  119. pm.status_path = /fpm-status
  120. ; The ping URI to call the monitoring page of FPM. If this value is not set, no
  121. ; URI will be recognized as a ping page. This could be used to test from outside
  122. ; that FPM is alive and responding, or to
  123. ; - create a graph of FPM availability (rrd or such);
  124. ; - remove a server from a group if it is not responding (load balancing);
  125. ; - trigger alerts for the operating team (24/7).
  126. ; Note: The value must start with a leading slash (/). The value can be
  127. ; anything, but it may not be a good idea to use the .php extension or it
  128. ; may conflict with a real PHP file.
  129. ; Default Value: not set
  130. ping.path = /ping
  131. ; The timeout for serving a single request after which the worker process will
  132. ; be killed. This option should be used when the 'max_execution_time' ini option
  133. ; does not stop script execution for some reason. A value of '0' means 'off'.
  134. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  135. ; Default Value: 0
  136. request_terminate_timeout = 600s
  137. ; The timeout for serving a single request after which a PHP backtrace will be
  138. ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
  139. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  140. ; Default Value: 0
  141. request_slowlog_timeout = 0
  142. ; The log file for slow requests
  143. ; Default Value: not set
  144. ; Note: slowlog is mandatory if request_slowlog_timeout is set
  145. slowlog = /var/log/nginx/<TPL:PHP_NAME>.slow.log
  146. ; Set open file descriptor rlimit.
  147. ; Default Value: system defined value
  148. rlimit_files = 4096
  149. ; Set max core size rlimit.
  150. ; Possible Values: 'unlimited' or an integer greater or equal to 0
  151. ; Default Value: system defined value
  152. rlimit_core = 0
  153. ; Chdir to this directory at the start.
  154. ; Note: relative path can be used.
  155. ; Default Value: current directory or / when chroot
  156. chdir = <TPL:NGINX_REALPATH>
  157. ; Redirect worker stdout and stderr into main error log. If not set, stdout and
  158. ; stderr will be redirected to /dev/null according to FastCGI specs.
  159. ; Note: on highloaded environement, this can cause some delay in the page
  160. ; process time (several ms).
  161. ; Default Value: no
  162. catch_workers_output = no
  163. ; Additional php.ini defines, specific to this pool of workers. These settings
  164. ; overwrite the values previously defined in the php.ini. The directives are the
  165. ; same as the PHP SAPI:
  166. ; php_value/php_flag - you can set classic ini defines which can
  167. ; be overwritten from PHP call 'ini_set'.
  168. ; php_admin_value/php_admin_flag - these directives won't be overwritten by
  169. ; PHP call 'ini_set'
  170. ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
  171. ;
  172. ; Defining 'extension' will load the corresponding shared extension from
  173. ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
  174. ; overwrite previously defined php.ini values, but will append the new value
  175. ; instead.
  176. ;
  177. ; Note: path INI options can be relative and will be expanded with the prefix
  178. ; (pool, global or /usr)
  179. php_value[max_execution_time] = 600
  180. php_value[upload_max_filesize] = 10G
  181. php_value[post_max_size] = 10G