-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupervisord.conf
More file actions
68 lines (62 loc) · 1.6 KB
/
supervisord.conf
File metadata and controls
68 lines (62 loc) · 1.6 KB
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
[supervisord]
nodaemon=true
user=root
logfile=/var/log/supervisor/supervisord.log
pidfile=/var/run/supervisord.pid
childlogdir=/var/log/supervisor
##################################
# X virtual framebuffer
##################################
[program:xvfb]
command=/usr/bin/Xvfb :99 -screen 0 1280x1024x24
autorestart=true
priority=10
startsecs=3
##################################
# Window manager
##################################
[program:fluxbox]
command=/usr/bin/fluxbox
environment=DISPLAY=:99
autorestart=true
priority=20
startsecs=3
##################################
# Optional debug terminal (xterm)
##################################
[program:xterm]
command=/usr/bin/xterm
environment=DISPLAY=:99,XDG_RUNTIME_DIR=/tmp/runtime-root
autorestart=true
priority=25
startsecs=3
##################################
# VNC server
##################################
[program:x11vnc]
command=/usr/bin/x11vnc -display :99 -forever -shared -rfbport 5900 -nopw
autorestart=true
priority=30
startsecs=3
##################################
# openMSX emulator
##################################
[program:openmsx]
command=/usr/local/bin/openmsx -machine Philips_NMS_8250
environment=DISPLAY=:99,HOME=/home/dev
user=dev
autorestart=true
startsecs=5
priority=40
stdout_logfile=/var/log/openmsx.out.log
stderr_logfile=/var/log/openmsx.err.log
stdout_logfile_maxbytes=0
stderr_logfile_maxbytes=0
##################################
# noVNC web client
##################################
[program:novnc]
command=/usr/share/novnc/utils/novnc_proxy --vnc localhost:5900 --listen 6080 --web /usr/share/novnc
autorestart=true
priority=50
startsecs=3