forked from Mirrors/Dispatcharr
reverted to uwsgi for now - gunicorn will need work to keep the proxy working
This commit is contained in:
parent
354cd84c88
commit
8807b442db
3 changed files with 41 additions and 27 deletions
|
|
@ -29,6 +29,7 @@ INSTALLED_APPS = [
|
|||
'apps.proxy.apps.ProxyConfig',
|
||||
'apps.proxy.ts_proxy',
|
||||
'core',
|
||||
'daphne',
|
||||
'drf_yasg',
|
||||
'channels',
|
||||
'django.contrib.admin',
|
||||
|
|
|
|||
|
|
@ -108,36 +108,47 @@ cd /app
|
|||
python manage.py migrate --noinput
|
||||
python manage.py collectstatic --noinput
|
||||
|
||||
sed -i 's/protected-mode yes/protected-mode no/g' /etc/redis/redis.conf
|
||||
su - $POSTGRES_USER -c "redis-server --protected-mode no &"
|
||||
redis_pid=$(pgrep redis)
|
||||
echo "✅ redis started with PID $redis_pid"
|
||||
pids+=("$redis_pid")
|
||||
uwsgi_file="/app/docker/uwsgi.ini"
|
||||
if [ "$DISPATCHARR_ENV" = "dev" ]; then
|
||||
uwsgi_file="/app/docker/uwsgi.dev.ini"
|
||||
fi
|
||||
|
||||
echo "🚀 Starting gunicorn..."
|
||||
su - $POSTGRES_USER -c "cd /app && gunicorn dispatcharr.asgi:application \
|
||||
--bind 0.0.0.0:5656 \
|
||||
--worker-class uvicorn.workers.UvicornWorker \
|
||||
--workers 2 \
|
||||
--threads 1 \
|
||||
--timeout 600 \
|
||||
--keep-alive 30 \
|
||||
--access-logfile - \
|
||||
--error-logfile - &"
|
||||
gunicorn_pid=$(pgrep gunicorn | sort | head -n1)
|
||||
echo "✅ gunicorn started with PID $gunicorn_pid"
|
||||
pids+=("$gunicorn_pid")
|
||||
echo "🚀 Starting uwsgi..."
|
||||
su - $POSTGRES_USER -c "cd /app && uwsgi --ini $uwsgi_file &"
|
||||
uwsgi_pid=$(pgrep uwsgi | sort | head -n1)
|
||||
echo "✅ uwsgi started with PID $uwsgi_pid"
|
||||
pids+=("$uwsgi_pid")
|
||||
|
||||
echo "Starting celery and beat..."
|
||||
su - $POSTGRES_USER -c "cd /app && celery -A dispatcharr worker -l info --autoscale=8,2 &"
|
||||
celery_pid=$(pgrep celery | sort | head -n1)
|
||||
echo "✅ celery started with PID $celery_pid"
|
||||
pids+=("$celery_pid")
|
||||
# sed -i 's/protected-mode yes/protected-mode no/g' /etc/redis/redis.conf
|
||||
# su - $POSTGRES_USER -c "redis-server --protected-mode no &"
|
||||
# redis_pid=$(pgrep redis)
|
||||
# echo "✅ redis started with PID $redis_pid"
|
||||
# pids+=("$redis_pid")
|
||||
|
||||
su - $POSTGRES_USER -c "cd /app && celery -A dispatcharr beat -l info &"
|
||||
beat_pid=$(pgrep beat | sort | head -n1)
|
||||
echo "✅ celery beat started with PID $beat_pid"
|
||||
pids+=("$beat_pid")
|
||||
# echo "🚀 Starting gunicorn..."
|
||||
# su - $POSTGRES_USER -c "cd /app && gunicorn dispatcharr.asgi:application \
|
||||
# --bind 0.0.0.0:5656 \
|
||||
# --worker-class uvicorn.workers.UvicornWorker \
|
||||
# --workers 2 \
|
||||
# --threads 1 \
|
||||
# --timeout 0 \
|
||||
# --keep-alive 30 \
|
||||
# --access-logfile - \
|
||||
# --error-logfile - &"
|
||||
# gunicorn_pid=$(pgrep gunicorn | sort | head -n1)
|
||||
# echo "✅ gunicorn started with PID $gunicorn_pid"
|
||||
# pids+=("$gunicorn_pid")
|
||||
|
||||
# echo "Starting celery and beat..."
|
||||
# su - $POSTGRES_USER -c "cd /app && celery -A dispatcharr worker -l info --autoscale=8,2 &"
|
||||
# celery_pid=$(pgrep celery | sort | head -n1)
|
||||
# echo "✅ celery started with PID $celery_pid"
|
||||
# pids+=("$celery_pid")
|
||||
|
||||
# su - $POSTGRES_USER -c "cd /app && celery -A dispatcharr beat -l info &"
|
||||
# beat_pid=$(pgrep beat | sort | head -n1)
|
||||
# echo "✅ celery beat started with PID $beat_pid"
|
||||
# pids+=("$beat_pid")
|
||||
|
||||
# Wait for at least one process to exit and log the process that exited first
|
||||
if [ ${#pids[@]} -gt 0 ]; then
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ drf-yasg>=1.20.0
|
|||
streamlink
|
||||
python-vlc
|
||||
yt-dlp
|
||||
gevent==24.11.1
|
||||
daphne
|
||||
django-cors-headers
|
||||
djangorestframework-simplejwt
|
||||
m3u8
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue