mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 02:20:01 +02:00
Replaced gunicorn with daphne
This commit is contained in:
parent
8dea9130af
commit
7f7a62cfa2
6 changed files with 13 additions and 9 deletions
3
api/compose/django/daphne.sh
Executable file
3
api/compose/django/daphne.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -eux
|
||||
python /app/manage.py collectstatic --noinput
|
||||
/usr/local/bin/daphne --root-path=/app -b 0.0.0.0 -p 5000 config.asgi:application
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
python /app/manage.py collectstatic --noinput
|
||||
/usr/local/bin/gunicorn config.wsgi -w 4 -b 0.0.0.0:5000 --chdir=/app
|
Loading…
Add table
Add a link
Reference in a new issue