mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 08:37:12 +00:00
22 lines
No EOL
618 B
Text
22 lines
No EOL
618 B
Text
[supervisord]
|
|
nodaemon=true
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:srv]
|
|
command=python /app/bin/srv.py
|
|
stderr_logfile=/var/log/supervisor/srv-stderr.log
|
|
stdout_logfile=/var/log/supervisor/srv-stdout.log
|
|
|
|
[program:proxy]
|
|
command=python /app/bin/proxy.py
|
|
stderr_logfile=/var/log/supervisor/proxy-stderr.log
|
|
stdout_logfile=/var/log/supervisor/proxy-stdout.log
|
|
|
|
[program:geoproxy]
|
|
command=python /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 |