Skip to content

Instantly share code, notes, and snippets.

@duncte123
Forked from thomasjsn/laravel-queue.service
Created April 9, 2019 08:30
Show Gist options
  • Save duncte123/009ef840bd6190ea8dd0acc349809844 to your computer and use it in GitHub Desktop.
Save duncte123/009ef840bd6190ea8dd0acc349809844 to your computer and use it in GitHub Desktop.
Laravel queue worker using systemd.
# Laravel queue worker using systemd
# ----------------------------------
#
# /lib/systemd/system/queue.service
#
# run this command to enable service:
# systemctl enable queue.service
[Unit]
Description=Laravel queue worker
[Service]
User=www-data
Group=www-data
Restart=on-failure
ExecStart=/usr/bin/php /path/to/laravel/artisan queue:work --daemon --env=production
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment