Spaces:
Paused
Paused
Update supervisord.conf
Browse files- supervisord.conf +13 -7
supervisord.conf
CHANGED
|
@@ -2,30 +2,36 @@
|
|
| 2 |
nodaemon=true
|
| 3 |
logfile=/dev/null
|
| 4 |
logfile_maxbytes=0
|
| 5 |
-
pidfile=/
|
|
|
|
| 6 |
|
| 7 |
[program:xvfb]
|
| 8 |
-
command
|
| 9 |
autorestart=true
|
| 10 |
priority=100
|
|
|
|
| 11 |
|
| 12 |
[program:fluxbox]
|
| 13 |
-
command
|
| 14 |
autorestart=true
|
| 15 |
priority=150
|
|
|
|
| 16 |
|
| 17 |
[program:x11vnc]
|
| 18 |
-
command
|
| 19 |
autorestart=true
|
| 20 |
priority=175
|
|
|
|
| 21 |
|
| 22 |
[program:chromium]
|
| 23 |
-
command
|
| 24 |
-
environment=DISPLAY
|
| 25 |
autorestart=true
|
| 26 |
priority=200
|
|
|
|
| 27 |
|
| 28 |
[program:novnc]
|
| 29 |
command=/usr/share/novnc/utils/launch.sh --vnc localhost:5900 --listen %(ENV_PORT)s
|
| 30 |
autorestart=true
|
| 31 |
-
priority=300
|
|
|
|
|
|
| 2 |
nodaemon=true
|
| 3 |
logfile=/dev/null
|
| 4 |
logfile_maxbytes=0
|
| 5 |
+
pidfile=/tmp/supervisord.pid
|
| 6 |
+
user=1000
|
| 7 |
|
| 8 |
[program:xvfb]
|
| 9 |
+
command=Xvfb :0 -screen 0 %(ENV_RESOLUTION)s
|
| 10 |
autorestart=true
|
| 11 |
priority=100
|
| 12 |
+
user=1000
|
| 13 |
|
| 14 |
[program:fluxbox]
|
| 15 |
+
command=fluxbox
|
| 16 |
autorestart=true
|
| 17 |
priority=150
|
| 18 |
+
user=1000
|
| 19 |
|
| 20 |
[program:x11vnc]
|
| 21 |
+
command=x11vnc -display :0 -forever -shared -noxdamage
|
| 22 |
autorestart=true
|
| 23 |
priority=175
|
| 24 |
+
user=1000
|
| 25 |
|
| 26 |
[program:chromium]
|
| 27 |
+
command=chromium-browser --no-sandbox --disable-gpu --disable-dev-shm-usage --start-maximized
|
| 28 |
+
environment=DISPLAY=":0",HOME="/home/user"
|
| 29 |
autorestart=true
|
| 30 |
priority=200
|
| 31 |
+
user=1000
|
| 32 |
|
| 33 |
[program:novnc]
|
| 34 |
command=/usr/share/novnc/utils/launch.sh --vnc localhost:5900 --listen %(ENV_PORT)s
|
| 35 |
autorestart=true
|
| 36 |
+
priority=300
|
| 37 |
+
user=1000
|