Skip to content

Instantly share code, notes, and snippets.

@liamja
Created October 21, 2019 15:28
Show Gist options
  • Save liamja/f6d965df56fb32e2ca1ade8852a42c20 to your computer and use it in GitHub Desktop.
Save liamja/f6d965df56fb32e2ca1ade8852a42c20 to your computer and use it in GitHub Desktop.
Laravel Worker as a systemd Service Unit
[Unit]
Description=Laravel Worker
Wants=network-online.target
[Service]
Type=simple
User=forge
ExecStart=/usr/bin/php /var/www/artisan queue:work
Restart=always
RestartSec=5
StartLimitInterval=1m
StartLimitBurst=3
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment