Annotation of /trunk/php/php-fpm.conf
Parent Directory | Revision Log
Revision 1934 -
(hide annotations)
(download)
Wed Oct 31 19:40:58 2012 UTC (12 years ago) by niro
File size: 1691 byte(s)
Wed Oct 31 19:40:58 2012 UTC (12 years ago) by niro
File size: 1691 byte(s)
-added php configuration files
1 | niro | 1934 | ;;;;;;;;;;;;;;;;;;;;; |
2 | ; FPM Configuration ; | ||
3 | ;;;;;;;;;;;;;;;;;;;;; | ||
4 | |||
5 | ; All relative paths in this configuration file are relative to PHP's install | ||
6 | ; prefix. | ||
7 | |||
8 | ; Include one or more files. If glob(3) exists, it is used to include a bunch of | ||
9 | ; files from a glob(3) pattern. This directive can be used everywhere in the | ||
10 | ; file. | ||
11 | include=/etc/php/fpm.d/*.conf | ||
12 | |||
13 | ;;;;;;;;;;;;;;;;;; | ||
14 | ; Global Options ; | ||
15 | ;;;;;;;;;;;;;;;;;; | ||
16 | |||
17 | [global] | ||
18 | ; Pid file | ||
19 | ; Default Value: none | ||
20 | pid = /run/php-fpm/php-fpm.pid | ||
21 | |||
22 | ; Error log file | ||
23 | ; Default Value: /var/log/php-fpm.log | ||
24 | error_log = /var/log/php-fpm/error.log | ||
25 | |||
26 | ; Log level | ||
27 | ; Possible Values: alert, error, warning, notice, debug | ||
28 | ; Default Value: notice | ||
29 | ;log_level = notice | ||
30 | |||
31 | ; If this number of child processes exit with SIGSEGV or SIGBUS within the time | ||
32 | ; interval set by emergency_restart_interval then FPM will restart. A value | ||
33 | ; of '0' means 'Off'. | ||
34 | ; Default Value: 0 | ||
35 | ;emergency_restart_threshold = 0 | ||
36 | |||
37 | ; Interval of time used by emergency_restart_interval to determine when | ||
38 | ; a graceful restart will be initiated. This can be useful to work around | ||
39 | ; accidental corruptions in an accelerator's shared memory. | ||
40 | ; Available Units: s(econds), m(inutes), h(ours), or d(ays) | ||
41 | ; Default Unit: seconds | ||
42 | ; Default Value: 0 | ||
43 | ;emergency_restart_interval = 0 | ||
44 | |||
45 | ; Time limit for child processes to wait for a reaction on signals from master. | ||
46 | ; Available units: s(econds), m(inutes), h(ours), or d(ays) | ||
47 | ; Default Unit: seconds | ||
48 | ; Default Value: 0 | ||
49 | ;process_control_timeout = 0 | ||
50 | |||
51 | ; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging. | ||
52 | ; Default Value: yes | ||
53 | daemonize = no | ||
54 | |||
55 | ;;;;;;;;;;;;;;;;;;;; | ||
56 | ; Pool Definitions ; | ||
57 | ;;;;;;;;;;;;;;;;;;;; | ||
58 | |||
59 | ; See /etc/php/fpm.d/*.conf | ||
60 |