mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-29 16:17:59 +01:00
22 lines
340 B
Bash
Executable file
22 lines
340 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
sudo -Esu www-data php artisan optimize
|
|
|
|
MODE=$1
|
|
|
|
case $MODE in
|
|
web)
|
|
php-fpm -D
|
|
nginx -g 'pid /tmp/nginx.pid; daemon off;'
|
|
;;
|
|
|
|
worker)
|
|
sudo -Esu www-data php artisan queue:listen --queue=default,notifications,indexing --sleep=5 --tries=3
|
|
;;
|
|
|
|
*)
|
|
echo "Unknown mode given"
|
|
;;
|
|
esac
|