File size: 1,376 Bytes
985a98e |
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 |
[supervisord]
nodaemon=true
logfile=/data/huggingface/supervisor_logs/supervisord.log
logfile_maxbytes=50MB
logfile_backups=10
loglevel=info
pidfile=/data/huggingface/supervisor_logs/supervisord.pid
[program:Xvfb]
command=/usr/bin/Xvfb :99 -screen 0 1024x768x16
autostart=true
autorestart=true
stdout_logfile=/data/huggingface/supervisor_logs/xvfb.log
stderr_logfile=/data/huggingface/supervisor_logs/xvfb.err
[program:fluxbox]
command=/usr/bin/fluxbox
autostart=true
autorestart=true
stdout_logfile=/data/huggingface/supervisor_logs/fluxbox.log
stderr_logfile=/data/huggingface/supervisor_logs/fluxbox.err
[program:firefox]
command=/usr/bin/firefox --no-remote
environment=DISPLAY=:99
autostart=true
autorestart=true
stdout_logfile=/data/huggingface/supervisor_logs/firefox.log
stderr_logfile=/data/huggingface/supervisor_logs/firefox.err
[program:x11vnc]
command=/usr/bin/x11vnc -display :99 -nopw -forever -loop -rfbport 5900 -shared
autostart=true
autorestart=true
stdout_logfile=/data/huggingface/supervisor_logs/x11vnc.log
stderr_logfile=/data/huggingface/supervisor_logs/x11vnc.err
[program:novnc]
command=/data/huggingface/noVNC/utils/launch.sh --vnc localhost:5900 --listen 7860
directory=/data/huggingface/noVNC
autostart=true
autorestart=true
stdout_logfile=/data/huggingface/supervisor_logs/novnc.log
stderr_logfile=/data/huggingface/supervisor_logs/novnc.err |