Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit 2e69300

Browse files
authored
Added supervisorctl (ported from /etc/supervisor/supervisord.conf (SeleniumHQ#1612)
* Adds supervisord config to allow supervisorctl in the container. * Update supervisor socket (/var/run unavail probably)
1 parent bf41706 commit 2e69300

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Base/supervisord.conf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,18 @@ nodaemon=true ; (start in foreground if true;def
1111
minfds=1024 ; (min. avail startup file descriptors;default 1024)
1212
minprocs=200 ; (min. avail process descriptors;default 200)
1313

14+
[unix_http_server]
15+
file=/tmp/supervisor.sock ; (the path to the socket file)
16+
chmod=0700
17+
18+
; the below section must remain in the config file for RPC
19+
; (supervisorctl/web interface) to work, additional interfaces may be
20+
; added by defining them in separate rpcinterface: sections
21+
[rpcinterface:supervisor]
22+
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
23+
24+
[supervisorctl]
25+
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
26+
1427
[include]
1528
files = /etc/supervisor/conf.d/*.conf

0 commit comments

Comments
 (0)