9 lines
320 B
Bash
Executable File
9 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
cd /home/www/p462500/html || exit 1
|
|
|
|
# 1) Laravel Scheduler
|
|
php artisan schedule:run >> storage/logs/scheduler.log 2>&1
|
|
|
|
# 2) Queue abarbeiten (stoppt automatisch, wenn leer)
|
|
php artisan queue:work database --queue=default --stop-when-empty --sleep=1 --tries=3 --timeout=90 \
|
|
>> storage/logs/queue.log 2>&1 |