]> git.pld-linux.org Git - packages/php.git/blame - php-fpm-config.patch
add missing %extension_scripts pdo-oci
[packages/php.git] / php-fpm-config.patch
CommitLineData
6d7958ec
ER
1--- php-5.3.9/sapi/fpm/php-fpm.conf.in~ 2012-01-11 21:38:12.000000000 +0200
2+++ php-5.3.9/sapi/fpm/php-fpm.conf.in 2012-01-11 21:39:02.535951773 +0200
a75ee3d7
JP
3@@ -22,7 +22,7 @@
4 ; Pid file
5 ; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@
6 ; Default Value: none
7-;pid = run/php-fpm.pid
8+pid = /var/run/php/fpm.pid
9
10 ; Error log file
11 ; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@
52ca5276
ER
12@@ -93,7 +93,7 @@
13 ; specific port;
14 ; '/path/to/unix/socket' - to listen on a unix socket.
15 ; Note: This value is mandatory.
16-listen = 127.0.0.1:9000
17+listen = /var/run/php/fpm.sock
18
19 ; Set listen(2) backlog. A value of '-1' means unlimited.
20 ; Default Value: 128 (-1 on FreeBSD and OpenBSD)
21@@ -105,7 +105,7 @@
b5727ab6
ER
22 ; must be separated by a comma. If this value is left blank, connections will be
23 ; accepted from any ip address.
24 ; Default Value: any
25-;listen.allowed_clients = 127.0.0.1
26+listen.allowed_clients = 127.0.0.1
27
28 ; Set permissions for unix socket, if one is used. In Linux, read/write
29 ; permissions must be set in order to allow connections from a web server. Many
6d7958ec 30@@ -208,12 +208,12 @@
a75ee3d7
JP
31 ; The desired minimum number of idle server processes.
32 ; Note: Used only when pm is set to 'dynamic'
33 ; Note: Mandatory when pm is set to 'dynamic'
6d7958ec
ER
34-pm.min_spare_servers = 1
35+pm.min_spare_servers = 2
a75ee3d7
JP
36
37 ; The desired maximum number of idle server processes.
38 ; Note: Used only when pm is set to 'dynamic'
39 ; Note: Mandatory when pm is set to 'dynamic'
6d7958ec
ER
40-pm.max_spare_servers = 3
41+pm.max_spare_servers = 5
42
43 ; The number of seconds after which an idle process will be killed.
44 ; Note: Used only when pm is set to 'ondemand'
83e9cbb3
ER
45@@ -214,7 +214,7 @@
46 ; anything, but it may not be a good idea to use the .php extension or it
47 ; may conflict with a real PHP file.
48 ; Default Value: not set
49-;pm.status_path = /status
50+;pm.status_path = /fpm-status
51
52 ; The ping URI to call the monitoring page of FPM. If this value is not set, no
53 ; URI will be recognized as a ping page. This could be used to test from outside
52ca5276 54@@ -277,7 +277,7 @@
86a42589
ER
55 ; the current environment.
56 ; Default Value: clean env
57 ;env[HOSTNAME] = $HOSTNAME
58-;env[PATH] = /usr/local/bin:/usr/bin:/bin
59+env[PATH] = $PATH
60 ;env[TMP] = /tmp
61 ;env[TMPDIR] = /tmp
62 ;env[TEMP] = /tmp
57727ccf
ER
63--- php-5.3.9/sapi/fpm/status.html.in~ 2011-10-08 23:43:12.000000000 +0300
64+++ php-5.3.9/sapi/fpm/status.html.in 2012-01-12 02:19:09.573191879 +0200
65@@ -96,7 +96,7 @@
66 var sort_index;
67 var sort_order;
68
69- doc_url.value = location.protocol + '//' + location.host + "/status?json&full";
70+ doc_url.value = location.protocol + '//' + location.host + "/fpm-status?json&full";
71
72 ths = document.getElementsByTagName("th");
73 for (var i=0; i<ths.length; i++) {
74--- php-5.3.9/sapi/fpm/Makefile.frag~ 2012-01-11 21:49:42.000000000 +0200
75+++ php-5.3.9/sapi/fpm/Makefile.frag 2012-01-12 02:20:25.553355153 +0200
76@@ -21,7 +21,7 @@
77 @echo "Installing PHP FPM config: $(INSTALL_ROOT)$(sysconfdir)/" && \
78 $(mkinstalldirs) $(INSTALL_ROOT)$(sysconfdir) || :
79
80- @$(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf.default || :
81+ @$(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf || :
82
83 @echo "Installing PHP FPM man page: $(INSTALL_ROOT)$(mandir)/man8/"
84 @$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man8
This page took 0.046387 seconds and 4 git commands to generate.