-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathselenium.conf
72 lines (63 loc) · 1.85 KB
/
selenium.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
; Documentation of this file format -> http://supervisord.org/configuration.html
; Priority 0 - xvfb & fluxbox, 5 - x11vnc, 10 - noVNC, 15 - selenium-node
[program:xvfb]
priority=0
command=/opt/bin/start-xvfb.sh
autostart=%(ENV_SE_START_XVFB)s
autorestart=%(ENV_SE_START_XVFB)s
killasgroup=true
;Logs
redirect_stderr=false
stdout_logfile=/var/log/supervisor/xvfb-stdout.log
stderr_logfile=/var/log/supervisor/xvfb-stderr.log
stdout_logfile_maxbytes=50MB
stderr_logfile_maxbytes=50MB
stdout_logfile_backups=5
stderr_logfile_backups=5
stdout_capture_maxbytes=50MB
stderr_capture_maxbytes=50MB
[program:vnc]
priority=5
command=/opt/bin/start-vnc.sh
autostart=%(ENV_SE_START_VNC)s
autorestart=%(ENV_SE_START_VNC)s
killasgroup=true
;Logs
redirect_stderr=false
stdout_logfile=/var/log/supervisor/vnc-stdout.log
stderr_logfile=/var/log/supervisor/vnc-stderr.log
stdout_logfile_maxbytes=50MB
stderr_logfile_maxbytes=50MB
stdout_logfile_backups=5
stderr_logfile_backups=5
stdout_capture_maxbytes=50MB
stderr_capture_maxbytes=50MB
[program:novnc]
priority=10
command=/opt/bin/start-novnc.sh
autostart=%(ENV_SE_START_NO_VNC)s
autorestart=%(ENV_SE_START_NO_VNC)s
killasgroup=true
;Logs
redirect_stderr=false
stdout_logfile=/var/log/supervisor/novnc-stdout.log
stderr_logfile=/var/log/supervisor/novnc-stderr.log
stdout_logfile_maxbytes=50MB
stderr_logfile_maxbytes=50MB
stdout_logfile_backups=5
stderr_logfile_backups=5
stdout_capture_maxbytes=50MB
stderr_capture_maxbytes=50MB
[program:selenium-node]
priority=15
command=bash -c "/opt/bin/start-selenium-node.sh; EXIT_CODE=$?; kill -s SIGINT `cat ${SE_SUPERVISORD_PID_FILE}`; exit $EXIT_CODE"
stopasgroup = true
killasgroup=true
autostart=true
autorestart=false
startsecs=0
startretries=0
;Logs (all Hub activity redirected to stdout so it can be seen through "docker logs"
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0