-
Notifications
You must be signed in to change notification settings - Fork 15
/
supervisord.conf
54 lines (49 loc) · 1.06 KB
/
supervisord.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
[supervisord]
nodaemon=false
[program:xvfb]
priority=1
command=/usr/bin/Xvfb :1 -screen 0 1280x960x24
user=root
autostart=true
autorestart=true
stopsignal=QUIT
stdout_logfile=/var/log/xvfb.log
stderr_logfile=/var/log/xvfb.err
[program:i3]
priority=2
environment=DISPLAY=:1.0
command=/usr/bin/i3
user=root
autostart=true
autorestart=true
stopsignal=QUIT
stdout_logfile=/var/log/i3.log
stderr_logfile=/var/log/i3.err
[program:x11vnc]
priority=3
command=x11vnc -forever -display :1 -usepw
user=root
autostart=true
autorestart=true
stopsignal=QUIT
stdout_logfile=/var/log/x11vnc.log
stderr_logfile=/var/log/x11vnc.err
[program:novnc]
priority=4
command=/root/novnc/noVNC/utils/novnc_proxy --vnc localhost:5900
user=root
autostart=true
autorestart=true
stopsignal=QUIT
stdout_logfile=/var/log/novnc.log
stderr_logfile=/var/log/novnc.err
[program:baidunetdisk]
priority=5
environment=DISPLAY=:1.0
command=/opt/baidunetdisk/baidunetdisk --no-sandbox
user=root
autostart=true
autorestart=true
stopsignal=QUIT
stdout_logfile=/var/log/baidunetdisk.log
stderr_logfile=/var/log/baidunetdisk.err