File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ PHP Docker Boilerplate Changelog
12
12
- Added blackfire.io
13
13
- Added possiblity to disable Xdebug and Blackfire
14
14
- Moved php.ini to etc/php/development.ini and etc/php/production.ini
15
+ - Added possibility to use supervisorctl (as root)
15
16
- Improved provisioning
16
17
- Refactored layout
17
18
- Added prebuilt Docker images
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ nodaemon=true
4
4
[unix_http_server]
5
5
file = /var/tmp/supervisor.sock
6
6
7
+ [rpcinterface:supervisor]
8
+ supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
9
+
7
10
[program:php-fpm]
8
11
command = /sbin/php-fpm
9
12
autostart = true
Original file line number Diff line number Diff line change 1
1
[supervisord]
2
2
nodaemon=true
3
3
4
+ [unix_http_server]
5
+ file = /var/run/supervisor.sock
6
+
7
+ [rpcinterface:supervisor]
8
+ supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
9
+
4
10
[program:php-fpm]
5
11
command = /usr/sbin/php5-fpm
6
12
autostart = true
You can’t perform that action at this time.
0 commit comments