supervisord.conf 877 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [unix_http_server]
  2. file=/run/supervisor.sock
  3. chmod=0700
  4. [supervisord]
  5. pidfile=/run/supervisord.pid
  6. nodaemon=true
  7. [supervisorctl]
  8. serverurl=unix:///run/supervisor.sock
  9. [rpcinterface:supervisor]
  10. supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
  11. [program:tester]
  12. process_name=tester
  13. command=python3 run.py --processor tester
  14. directory=/app
  15. stdout_logfile=/dev/stdout
  16. stdout_logfile_maxbytes=0
  17. stderr_logfile=/dev/stderr
  18. stderr_logfile_maxbytes=0
  19. [program:getter]
  20. process_name=getter
  21. command=python3 run.py --processor getter
  22. directory=/app
  23. stdout_logfile=/dev/stdout
  24. stdout_logfile_maxbytes=0
  25. stderr_logfile=/dev/stderr
  26. stderr_logfile_maxbytes=0
  27. [program:server]
  28. process_name=server
  29. command=python3 run.py --processor server
  30. directory=/app
  31. stdout_logfile=/dev/stdout
  32. stdout_logfile_maxbytes=0
  33. stderr_logfile=/dev/stderr
  34. stderr_logfile_maxbytes=0