Advertisement
prochor666

php-fpm.conf

Sep 3rd, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.87 KB | None | 0 0
  1. ;;;;;;;;;;;;;;;;;;;;;
  2. ; FPM Configuration ;
  3. ;;;;;;;;;;;;;;;;;;;;;
  4.  
  5. ; All relative paths in this configuration file are relative to PHP's install
  6. ; prefix (/opt/php-5.6.12). This prefix can be dynamically changed by using the
  7. ; '-p' argument from the command line.
  8.  
  9. ; Include one or more files. If glob(3) exists, it is used to include a bunch of
  10. ; files from a glob(3) pattern. This directive can be used everywhere in the
  11. ; file.
  12. ; Relative path can also be used. They will be prefixed by:
  13. ; - the global prefix if it's been set (-p argument)
  14. ; - /opt/php-5.6.12 otherwise
  15. ;include=etc/fpm.d/*.conf
  16.  
  17. ;;;;;;;;;;;;;;;;;;
  18. ; Global Options ;
  19. ;;;;;;;;;;;;;;;;;;
  20.  
  21. [global]
  22. ; Pid file
  23. ; Note: the default prefix is /opt/php-5.6.12/var
  24. ; Default Value: none
  25. pid = run/php-fpm.pid
  26.  
  27. ; Error log file
  28. ; If it's set to "syslog", log is sent to syslogd instead of being written
  29. ; in a local file.
  30. ; Note: the default prefix is /opt/php-5.6.12/var
  31. ; Default Value: log/php-fpm.log
  32. ;error_log = log/php-fpm.log
  33.  
  34. ; syslog_facility is used to specify what type of program is logging the
  35. ; message. This lets syslogd specify that messages from different facilities
  36. ; will be handled differently.
  37. ; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)
  38. ; Default Value: daemon
  39. ;syslog.facility = daemon
  40.  
  41. ; syslog_ident is prepended to every message. If you have multiple FPM
  42. ; instances running on the same server, you can change the default value
  43. ; which must suit common needs.
  44. ; Default Value: php-fpm
  45. ;syslog.ident = php-fpm
  46.  
  47. ; Log level
  48. ; Possible Values: alert, error, warning, notice, debug
  49. ; Default Value: notice
  50. ;log_level = notice
  51.  
  52. ; If this number of child processes exit with SIGSEGV or SIGBUS within the time
  53. ; interval set by emergency_restart_interval then FPM will restart. A value
  54. ; of '0' means 'Off'.
  55. ; Default Value: 0
  56. ;emergency_restart_threshold = 0
  57.  
  58. ; Interval of time used by emergency_restart_interval to determine when
  59. ; a graceful restart will be initiated. This can be useful to work around
  60. ; accidental corruptions in an accelerator's shared memory.
  61. ; Available Units: s(econds), m(inutes), h(ours), or d(ays)
  62. ; Default Unit: seconds
  63. ; Default Value: 0
  64. ;emergency_restart_interval = 0
  65.  
  66. ; Time limit for child processes to wait for a reaction on signals from master.
  67. ; Available units: s(econds), m(inutes), h(ours), or d(ays)
  68. ; Default Unit: seconds
  69. ; Default Value: 0
  70. ;process_control_timeout = 0
  71.  
  72. ; The maximum number of processes FPM will fork. This has been design to control
  73. ; the global number of processes when using dynamic PM within a lot of pools.
  74. ; Use it with caution.
  75. ; Note: A value of 0 indicates no limit
  76. ; Default Value: 0
  77. ; process.max = 128
  78.  
  79. ; Specify the nice(2) priority to apply to the master process (only if set)
  80. ; The value can vary from -19 (highest priority) to 20 (lower priority)
  81. ; Note: - It will only work if the FPM master process is launched as root
  82. ; - The pool process will inherit the master process priority
  83. ; unless it specified otherwise
  84. ; Default Value: no set
  85. ; process.priority = -19
  86.  
  87. ; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
  88. ; Default Value: yes
  89. ;daemonize = yes
  90.  
  91. ; Set open file descriptor rlimit for the master process.
  92. ; Default Value: system defined value
  93. ;rlimit_files = 1024
  94.  
  95. ; Set max core size rlimit for the master process.
  96. ; Possible Values: 'unlimited' or an integer greater or equal to 0
  97. ; Default Value: system defined value
  98. ;rlimit_core = 0
  99.  
  100. ; Specify the event mechanism FPM will use. The following is available:
  101. ; - select (any POSIX os)
  102. ; - poll (any POSIX os)
  103. ; - epoll (linux >= 2.5.44)
  104. ; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
  105. ; - /dev/poll (Solaris >= 7)
  106. ; - port (Solaris >= 10)
  107. ; Default Value: not set (auto detection)
  108. ;events.mechanism = epoll
  109.  
  110. ; When FPM is build with systemd integration, specify the interval,
  111. ; in second, between health report notification to systemd.
  112. ; Set to 0 to disable.
  113. ; Available Units: s(econds), m(inutes), h(ours)
  114. ; Default Unit: seconds
  115. ; Default value: 10
  116. ;systemd_interval = 10
  117.  
  118. ;;;;;;;;;;;;;;;;;;;;
  119. ; Pool Definitions ;
  120. ;;;;;;;;;;;;;;;;;;;;
  121.  
  122. ; Multiple pools of child processes may be started with different listening
  123. ; ports and different management options. The name of the pool will be
  124. ; used in logs and stats. There is no limitation on the number of pools which
  125. ; FPM can handle. Your system will tell you anyway :)
  126.  
  127. ; Start a new pool named 'www'.
  128. ; the variable $pool can we used in any directive and will be replaced by the
  129. ; pool name ('www' here)
  130. [www]
  131.  
  132. ; Per pool prefix
  133. ; It only applies on the following directives:
  134. ; - 'access.log'
  135. ; - 'slowlog'
  136. ; - 'listen' (unixsocket)
  137. ; - 'chroot'
  138. ; - 'chdir'
  139. ; - 'php_values'
  140. ; - 'php_admin_values'
  141. ; When not set, the global prefix (or /opt/php-5.6.12) applies instead.
  142. ; Note: This directive can also be relative to the global prefix.
  143. ; Default Value: none
  144. ;prefix = /path/to/pools/$pool
  145.  
  146. ; Unix user/group of processes
  147. ; Note: The user is mandatory. If the group is not set, the default user's group
  148. ; will be used.
  149. user = www-data
  150. group = www-data
  151.  
  152. ; The address on which to accept FastCGI requests.
  153. ; Valid syntaxes are:
  154. ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
  155. ; a specific port;
  156. ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
  157. ; a specific port;
  158. ; 'port' - to listen on a TCP socket to all IPv4 addresses on a
  159. ; specific port;
  160. ; '[::]:port' - to listen on a TCP socket to all addresses
  161. ; (IPv6 and IPv4-mapped) on a specific port;
  162. ; '/path/to/unix/socket' - to listen on a unix socket.
  163. ; Note: This value is mandatory.
  164. ; @prochor: default is 9000
  165. listen = 127.0.0.1:8999
  166.  
  167. ; Set listen(2) backlog.
  168. ; Default Value: 65535 (-1 on FreeBSD and OpenBSD)
  169. ;listen.backlog = 65535
  170.  
  171. ; Set permissions for unix socket, if one is used. In Linux, read/write
  172. ; permissions must be set in order to allow connections from a web server. Many
  173. ; BSD-derived systems allow connections regardless of permissions.
  174. ; Default Values: user and group are set as the running user
  175. ; mode is set to 0660
  176. ;listen.owner = www-data
  177. ;listen.group = www-data
  178. ;listen.mode = 0660
  179. ; When POSIX Access Control Lists are supported you can set them using
  180. ; these options, value is a comma separated list of user/group names.
  181. ; When set, listen.owner and listen.group are ignored
  182. ;listen.acl_users =
  183. ;listen.acl_groups =
  184.  
  185. ; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect.
  186. ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
  187. ; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
  188. ; must be separated by a comma. If this value is left blank, connections will be
  189. ; accepted from any ip address.
  190. ; Default Value: any
  191. ;listen.allowed_clients = 127.0.0.1
  192.  
  193. ; Specify the nice(2) priority to apply to the pool processes (only if set)
  194. ; The value can vary from -19 (highest priority) to 20 (lower priority)
  195. ; Note: - It will only work if the FPM master process is launched as root
  196. ; - The pool processes will inherit the master process priority
  197. ; unless it specified otherwise
  198. ; Default Value: no set
  199. ; process.priority = -19
  200.  
  201. ; Choose how the process manager will control the number of child processes.
  202. ; Possible Values:
  203. ; static - a fixed number (pm.max_children) of child processes;
  204. ; dynamic - the number of child processes are set dynamically based on the
  205. ; following directives. With this process management, there will be
  206. ; always at least 1 children.
  207. ; pm.max_children - the maximum number of children that can
  208. ; be alive at the same time.
  209. ; pm.start_servers - the number of children created on startup.
  210. ; pm.min_spare_servers - the minimum number of children in 'idle'
  211. ; state (waiting to process). If the number
  212. ; of 'idle' processes is less than this
  213. ; number then some children will be created.
  214. ; pm.max_spare_servers - the maximum number of children in 'idle'
  215. ; state (waiting to process). If the number
  216. ; of 'idle' processes is greater than this
  217. ; number then some children will be killed.
  218. ; ondemand - no children are created at startup. Children will be forked when
  219. ; new requests will connect. The following parameter are used:
  220. ; pm.max_children - the maximum number of children that
  221. ; can be alive at the same time.
  222. ; pm.process_idle_timeout - The number of seconds after which
  223. ; an idle process will be killed.
  224. ; Note: This value is mandatory.
  225. pm = dynamic
  226.  
  227. ; The number of child processes to be created when pm is set to 'static' and the
  228. ; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
  229. ; This value sets the limit on the number of simultaneous requests that will be
  230. ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
  231. ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
  232. ; CGI. The below defaults are based on a server without much resources. Don't
  233. ; forget to tweak pm.* to fit your needs.
  234. ; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
  235. ; Note: This value is mandatory.
  236. pm.max_children = 5
  237.  
  238. ; The number of child processes created on startup.
  239. ; Note: Used only when pm is set to 'dynamic'
  240. ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
  241. pm.start_servers = 2
  242.  
  243. ; The desired minimum number of idle server processes.
  244. ; Note: Used only when pm is set to 'dynamic'
  245. ; Note: Mandatory when pm is set to 'dynamic'
  246. pm.min_spare_servers = 1
  247.  
  248. ; The desired maximum number of idle server processes.
  249. ; Note: Used only when pm is set to 'dynamic'
  250. ; Note: Mandatory when pm is set to 'dynamic'
  251. pm.max_spare_servers = 3
  252.  
  253. ; The number of seconds after which an idle process will be killed.
  254. ; Note: Used only when pm is set to 'ondemand'
  255. ; Default Value: 10s
  256. ;pm.process_idle_timeout = 10s;
  257.  
  258. ; The number of requests each child process should execute before respawning.
  259. ; This can be useful to work around memory leaks in 3rd party libraries. For
  260. ; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
  261. ; Default Value: 0
  262. ;pm.max_requests = 500
  263.  
  264. ; The URI to view the FPM status page. If this value is not set, no URI will be
  265. ; recognized as a status page. It shows the following informations:
  266. ; pool - the name of the pool;
  267. ; process manager - static, dynamic or ondemand;
  268. ; start time - the date and time FPM has started;
  269. ; start since - number of seconds since FPM has started;
  270. ; accepted conn - the number of request accepted by the pool;
  271. ; listen queue - the number of request in the queue of pending
  272. ; connections (see backlog in listen(2));
  273. ; max listen queue - the maximum number of requests in the queue
  274. ; of pending connections since FPM has started;
  275. ; listen queue len - the size of the socket queue of pending connections;
  276. ; idle processes - the number of idle processes;
  277. ; active processes - the number of active processes;
  278. ; total processes - the number of idle + active processes;
  279. ; max active processes - the maximum number of active processes since FPM
  280. ; has started;
  281. ; max children reached - number of times, the process limit has been reached,
  282. ; when pm tries to start more children (works only for
  283. ; pm 'dynamic' and 'ondemand');
  284. ; Value are updated in real time.
  285. ; Example output:
  286. ; pool: www
  287. ; process manager: static
  288. ; start time: 01/Jul/2011:17:53:49 +0200
  289. ; start since: 62636
  290. ; accepted conn: 190460
  291. ; listen queue: 0
  292. ; max listen queue: 1
  293. ; listen queue len: 42
  294. ; idle processes: 4
  295. ; active processes: 11
  296. ; total processes: 15
  297. ; max active processes: 12
  298. ; max children reached: 0
  299. ;
  300. ; By default the status page output is formatted as text/plain. Passing either
  301. ; 'html', 'xml' or 'json' in the query string will return the corresponding
  302. ; output syntax. Example:
  303. ; http://www.foo.bar/status
  304. ; http://www.foo.bar/status?json
  305. ; http://www.foo.bar/status?html
  306. ; http://www.foo.bar/status?xml
  307. ;
  308. ; By default the status page only outputs short status. Passing 'full' in the
  309. ; query string will also return status for each pool process.
  310. ; Example:
  311. ; http://www.foo.bar/status?full
  312. ; http://www.foo.bar/status?json&full
  313. ; http://www.foo.bar/status?html&full
  314. ; http://www.foo.bar/status?xml&full
  315. ; The Full status returns for each process:
  316. ; pid - the PID of the process;
  317. ; state - the state of the process (Idle, Running, ...);
  318. ; start time - the date and time the process has started;
  319. ; start since - the number of seconds since the process has started;
  320. ; requests - the number of requests the process has served;
  321. ; request duration - the duration in ยตs of the requests;
  322. ; request method - the request method (GET, POST, ...);
  323. ; request URI - the request URI with the query string;
  324. ; content length - the content length of the request (only with POST);
  325. ; user - the user (PHP_AUTH_USER) (or '-' if not set);
  326. ; script - the main script called (or '-' if not set);
  327. ; last request cpu - the %cpu the last request consumed
  328. ; it's always 0 if the process is not in Idle state
  329. ; because CPU calculation is done when the request
  330. ; processing has terminated;
  331. ; last request memory - the max amount of memory the last request consumed
  332. ; it's always 0 if the process is not in Idle state
  333. ; because memory calculation is done when the request
  334. ; processing has terminated;
  335. ; If the process is in Idle state, then informations are related to the
  336. ; last request the process has served. Otherwise informations are related to
  337. ; the current request being served.
  338. ; Example output:
  339. ; ************************
  340. ; pid: 31330
  341. ; state: Running
  342. ; start time: 01/Jul/2011:17:53:49 +0200
  343. ; start since: 63087
  344. ; requests: 12808
  345. ; request duration: 1250261
  346. ; request method: GET
  347. ; request URI: /test_mem.php?N=10000
  348. ; content length: 0
  349. ; user: -
  350. ; script: /home/fat/web/docs/php/test_mem.php
  351. ; last request cpu: 0.00
  352. ; last request memory: 0
  353. ;
  354. ; Note: There is a real-time FPM status monitoring sample web page available
  355. ; It's available in: /opt/php-5.6.12/share/php/fpm/status.html
  356. ;
  357. ; Note: The value must start with a leading slash (/). The value can be
  358. ; anything, but it may not be a good idea to use the .php extension or it
  359. ; may conflict with a real PHP file.
  360. ; Default Value: not set
  361. ;pm.status_path = /status
  362.  
  363. ; The ping URI to call the monitoring page of FPM. If this value is not set, no
  364. ; URI will be recognized as a ping page. This could be used to test from outside
  365. ; that FPM is alive and responding, or to
  366. ; - create a graph of FPM availability (rrd or such);
  367. ; - remove a server from a group if it is not responding (load balancing);
  368. ; - trigger alerts for the operating team (24/7).
  369. ; Note: The value must start with a leading slash (/). The value can be
  370. ; anything, but it may not be a good idea to use the .php extension or it
  371. ; may conflict with a real PHP file.
  372. ; Default Value: not set
  373. ;ping.path = /ping
  374.  
  375. ; This directive may be used to customize the response of a ping request. The
  376. ; response is formatted as text/plain with a 200 response code.
  377. ; Default Value: pong
  378. ;ping.response = pong
  379.  
  380. ; The access log file
  381. ; Default: not set
  382. ;access.log = log/$pool.access.log
  383.  
  384. ; The access log format.
  385. ; The following syntax is allowed
  386. ; %%: the '%' character
  387. ; %C: %CPU used by the request
  388. ; it can accept the following format:
  389. ; - %{user}C for user CPU only
  390. ; - %{system}C for system CPU only
  391. ; - %{total}C for user + system CPU (default)
  392. ; %d: time taken to serve the request
  393. ; it can accept the following format:
  394. ; - %{seconds}d (default)
  395. ; - %{miliseconds}d
  396. ; - %{mili}d
  397. ; - %{microseconds}d
  398. ; - %{micro}d
  399. ; %e: an environment variable (same as $_ENV or $_SERVER)
  400. ; it must be associated with embraces to specify the name of the env
  401. ; variable. Some exemples:
  402. ; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
  403. ; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
  404. ; %f: script filename
  405. ; %l: content-length of the request (for POST request only)
  406. ; %m: request method
  407. ; %M: peak of memory allocated by PHP
  408. ; it can accept the following format:
  409. ; - %{bytes}M (default)
  410. ; - %{kilobytes}M
  411. ; - %{kilo}M
  412. ; - %{megabytes}M
  413. ; - %{mega}M
  414. ; %n: pool name
  415. ; %o: output header
  416. ; it must be associated with embraces to specify the name of the header:
  417. ; - %{Content-Type}o
  418. ; - %{X-Powered-By}o
  419. ; - %{Transfert-Encoding}o
  420. ; - ....
  421. ; %p: PID of the child that serviced the request
  422. ; %P: PID of the parent of the child that serviced the request
  423. ; %q: the query string
  424. ; %Q: the '?' character if query string exists
  425. ; %r: the request URI (without the query string, see %q and %Q)
  426. ; %R: remote IP address
  427. ; %s: status (response code)
  428. ; %t: server time the request was received
  429. ; it can accept a strftime(3) format:
  430. ; %d/%b/%Y:%H:%M:%S %z (default)
  431. ; %T: time the log has been written (the request has finished)
  432. ; it can accept a strftime(3) format:
  433. ; %d/%b/%Y:%H:%M:%S %z (default)
  434. ; %u: remote user
  435. ;
  436. ; Default: "%R - %u %t \"%m %r\" %s"
  437. ;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
  438.  
  439. ; The log file for slow requests
  440. ; Default Value: not set
  441. ; Note: slowlog is mandatory if request_slowlog_timeout is set
  442. ;slowlog = log/$pool.log.slow
  443.  
  444. ; The timeout for serving a single request after which a PHP backtrace will be
  445. ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
  446. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  447. ; Default Value: 0
  448. ;request_slowlog_timeout = 0
  449.  
  450. ; The timeout for serving a single request after which the worker process will
  451. ; be killed. This option should be used when the 'max_execution_time' ini option
  452. ; does not stop script execution for some reason. A value of '0' means 'off'.
  453. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
  454. ; Default Value: 0
  455. ;request_terminate_timeout = 0
  456.  
  457. ; Set open file descriptor rlimit.
  458. ; Default Value: system defined value
  459. ;rlimit_files = 1024
  460.  
  461. ; Set max core size rlimit.
  462. ; Possible Values: 'unlimited' or an integer greater or equal to 0
  463. ; Default Value: system defined value
  464. ;rlimit_core = 0
  465.  
  466. ; Chroot to this directory at the start. This value must be defined as an
  467. ; absolute path. When this value is not set, chroot is not used.
  468. ; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
  469. ; of its subdirectories. If the pool prefix is not set, the global prefix
  470. ; will be used instead.
  471. ; Note: chrooting is a great security feature and should be used whenever
  472. ; possible. However, all PHP paths will be relative to the chroot
  473. ; (error_log, sessions.save_path, ...).
  474. ; Default Value: not set
  475. ;chroot =
  476.  
  477. ; Chdir to this directory at the start.
  478. ; Note: relative path can be used.
  479. ; Default Value: current directory or / when chroot
  480. ;chdir = /var/www
  481.  
  482. ; Redirect worker stdout and stderr into main error log. If not set, stdout and
  483. ; stderr will be redirected to /dev/null according to FastCGI specs.
  484. ; Note: on highloaded environement, this can cause some delay in the page
  485. ; process time (several ms).
  486. ; Default Value: no
  487. ;catch_workers_output = yes
  488.  
  489. ; Clear environment in FPM workers
  490. ; Prevents arbitrary environment variables from reaching FPM worker processes
  491. ; by clearing the environment in workers before env vars specified in this
  492. ; pool configuration are added.
  493. ; Setting to "no" will make all environment variables available to PHP code
  494. ; via getenv(), $_ENV and $_SERVER.
  495. ; Default Value: yes
  496. ;clear_env = no
  497.  
  498. ; Limits the extensions of the main script FPM will allow to parse. This can
  499. ; prevent configuration mistakes on the web server side. You should only limit
  500. ; FPM to .php extensions to prevent malicious users to use other extensions to
  501. ; exectute php code.
  502. ; Note: set an empty value to allow all extensions.
  503. ; Default Value: .php
  504. ;security.limit_extensions = .php .php3 .php4 .php5
  505.  
  506. ; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
  507. ; the current environment.
  508. ; Default Value: clean env
  509. ;env[HOSTNAME] = $HOSTNAME
  510. ;env[PATH] = /usr/local/bin:/usr/bin:/bin
  511. ;env[TMP] = /tmp
  512. ;env[TMPDIR] = /tmp
  513. ;env[TEMP] = /tmp
  514.  
  515. ; Additional php.ini defines, specific to this pool of workers. These settings
  516. ; overwrite the values previously defined in the php.ini. The directives are the
  517. ; same as the PHP SAPI:
  518. ; php_value/php_flag - you can set classic ini defines which can
  519. ; be overwritten from PHP call 'ini_set'.
  520. ; php_admin_value/php_admin_flag - these directives won't be overwritten by
  521. ; PHP call 'ini_set'
  522. ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
  523.  
  524. ; Defining 'extension' will load the corresponding shared extension from
  525. ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
  526. ; overwrite previously defined php.ini values, but will append the new value
  527. ; instead.
  528.  
  529. ; Note: path INI options can be relative and will be expanded with the prefix
  530. ; (pool, global or /opt/php-5.6.12)
  531.  
  532. ; Default Value: nothing is defined by default except the values in php.ini and
  533. ; specified at startup with the -d argument
  534. ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
  535. ;php_flag[display_errors] = off
  536. ;php_admin_value[error_log] = /var/log/fpm-php.www.log
  537. ;php_admin_flag[log_errors] = on
  538. ;php_admin_value[memory_limit] = 32M
  539.  
  540. include /opt/php-5.6.12/etc/pool.d/*.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement