Installation for S&D
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.

29 lines
877 B

  1. [supervisord]
  2. nodaemon=true
  3. [program:php7.4-fpm]
  4. command=/usr/sbin/php-fpm7.4 --nodaemonize --fpm-config /etc/php/7.4/fpm/php-fpm.conf
  5. [program:queue-worker-search-and-displace-core-production]
  6. process_name=%(program_name)s_%(process_num)02d
  7. command=php /var/www/html/artisan queue:listen --queue=sd_core,default --tries=2 --timeout=180
  8. autostart=true
  9. autorestart=true
  10. user=www-data
  11. numprocs=3
  12. redirect_stderr=true
  13. stdout_logfile=/var/log/queue/queue-worker-search-and-displace-core-production.log
  14. [program:duckling-worker]
  15. process_name=%(program_name)s_%(process_num)02d
  16. directory=/var/www/html/fb-duckling
  17. command=stack exec duckling-example-exe
  18. autostart=true
  19. autorestart=true
  20. user=root
  21. numprocs=1
  22. redirect_stderr=true
  23. stdout_logfile=/var/log/queue/duckling.log
  24. [program:apache2]
  25. command=/bin/bash -c "source /etc/apache2/envvars && exec /usr/sbin/apache2 -DFOREGROUND"