mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=%(ENV_USER)s
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:worker]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=%(ENV_WORKER_COMMAND)s
|
|
user=%(ENV_USER)s
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|