mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-27 07:17:59 +01:00
21 lines
299 B
Bash
21 lines
299 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
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
|