You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[supervisord]
|
|
|
|
nodaemon=true
|
|
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
|
|
|
|
[program:srv]
|
|
|
|
command=python3 /app/bin/srv.py
|
|
|
|
stderr_logfile=/var/log/supervisor/srv-stderr.log
|
|
|
|
stdout_logfile=/var/log/supervisor/srv-stdout.log
|
|
|
|
|
|
|
|
[program:proxy]
|
|
|
|
command=python3 /app/bin/proxy.py
|
|
|
|
stderr_logfile=/var/log/supervisor/proxy-stderr.log
|
|
|
|
stdout_logfile=/var/log/supervisor/proxy-stdout.log
|
|
|
|
|
|
|
|
[program:geoproxy]
|
|
|
|
command=python3 /app/bin/geo-proxy.py
|
|
|
|
stderr_logfile=/var/log/supervisor/geoproxy-stderr.log
|
|
|
|
stdout_logfile=/var/log/supervisor/geoproxy-stdout.log
|
|
|
|
|
|
|
|
[include]
|
|
|
|
files=/etc/supervisor/conf.d/*.conf
|