Created
July 13, 2017 06:36
-
-
Save trungpv1601/ab2e0a649b151de7d893002e5b717b5c to your computer and use it in GitHub Desktop.
Supervisor laravel queue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:laravel-worker] | |
process_name=%(program_name)s_%(process_num)02d | |
command=php /var/www/xxx/artisan queue:work redis --timeout=0 --tries=8 | |
autostart=true | |
autorestart=true | |
numprocs=8 | |
redirect_stderr=true | |
stdout_logfile=/var/www/xxx/worker.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[program:laravel-worker] process_name=%(program_name)s_%(process_num)02d command=php /var/www/xxx/artisan queue:work redis --timeout=0 autostart=true autorestart=true numprocs=100