Skip to content

Instantly share code, notes, and snippets.

View CraigGoesCoding's full-sized avatar
😀

Craig CraigGoesCoding

😀
View GitHub Profile
@CraigGoesCoding
CraigGoesCoding / laravel-worker.conf
Created January 19, 2021 13:41
Supervisor configuration for running queues on Laravel Homestead
; see YouTube video: https://youtu.be/T9hfgkKgKOU
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /home/vagrant/project_folder/artisan queue:listen --tries=3
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
user=vagrant