spug.ini 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ; # Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
  2. ; # Copyright: (c) <spug.dev@gmail.com>
  3. ; # Released under the AGPL-3.0 License.
  4. [supervisord]
  5. nodaemon=true
  6. [program:redis]
  7. command = bash -c 'redis-server'
  8. autostart = true
  9. [program:spug-api]
  10. command = bash /spug/spug_api/tools/start-api.sh
  11. autostart = true
  12. stdout_logfile = /spug/spug_api/logs/api.log
  13. redirect_stderr = true
  14. [program:spug-ws]
  15. command = bash /spug/spug_api/tools/start-ws.sh
  16. autostart = true
  17. stdout_logfile = /spug/spug_api/logs/ws.log
  18. redirect_stderr = true
  19. [program:spug-worker]
  20. command = bash /spug/spug_api/tools/start-worker.sh
  21. autostart = true
  22. stdout_logfile = /spug/spug_api/logs/worker.log
  23. redirect_stderr = true
  24. [program:spug-monitor]
  25. command = bash /spug/spug_api/tools/start-monitor.sh
  26. autostart = true
  27. stdout_logfile = /spug/spug_api/logs/monitor.log
  28. redirect_stderr = true
  29. [program:spug-scheduler]
  30. command = bash /spug/spug_api/tools/start-scheduler.sh
  31. autostart = true
  32. stdout_logfile = /spug/spug_api/logs/scheduler.log
  33. redirect_stderr = true