Merge branch 'sage2050-develop-patch-57545' into 'develop'

Fix hardcoded API listening port

See merge request funkwhale/funkwhale!2777
vincent carter 2024-04-27 00:31:13 +00:00
commit bfe1329c23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -9,5 +9,5 @@ funkwhale-manage migrate
exec gunicorn config.asgi:application \
--workers "${FUNKWHALE_WEB_WORKERS-1}" \
--worker-class uvicorn.workers.UvicornWorker \
--bind 0.0.0.0:5000 \
--bind 0.0.0.0:"${FUNKWHALE_API_PORT}" \
${GUNICORN_ARGS-}