13 lines
246 B
Bash
13 lines
246 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
php artisan config:clear
|
|
php artisan config:cache
|
|
php artisan migrate --force
|
|
|
|
crond -f -l 8 &
|
|
php artisan reverb:start --host=0.0.0.0 --port=8080 &
|
|
php artisan queue:work --tries=3 --sleep=3 &
|
|
php-fpm -D
|
|
nginx -g 'daemon off;'
|