33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:vllm]
|
|
command=/bin/bash -c 'bash /app/start-vllm.sh 2>&1 | tee -a /var/log/app/vllm.log'
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/fd/2
|
|
stderr_logfile_maxbytes=0
|
|
user=apiserver
|
|
environment=HOME="/home/apiserver",USER="apiserver"
|
|
|
|
[program:rathole]
|
|
command=/bin/bash -c '/app/rathole -c /storage/vllm/rathole-client.toml 2>&1 | tee -a /var/log/app/rathole.log'
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/fd/2
|
|
stderr_logfile_maxbytes=0
|
|
user=apiserver
|
|
environment=HOME="/home/apiserver",USER="apiserver"
|
|
|
|
[program:jupyter]
|
|
command=/jupyterlab/bin/jupyter lab --allow-root --ip=0.0.0.0 --no-browser --ServerApp.trust_xheaders=True --ServerApp.disable_check_xsrf=False --ServerApp.allow_remote_access=True --ServerApp.allow_origin='*' --ServerApp.allow_credentials=True
|
|
environment=SHELL="/bin/bash"
|
|
; JUPYTER_CONFIG_DIR="/app/jupyter"
|
|
|
|
[program:ssh]
|
|
command=/usr/sbin/sshd -D
|