From 637091583bd1563a13b9fcb4f2ad93192dfb665b Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Wed, 15 May 2024 08:59:05 +0200 Subject: [PATCH] fix: make gunicorn verbose --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index 730f9ff..b07474a 100644 --- a/start.sh +++ b/start.sh @@ -8,5 +8,5 @@ python manage.py collectstatic --noinput #python manage.py build_solr_schema --configure-directory /var/solr_new/paas_solr/conf --reload-core default if [[ -z "${DEVELOP}" ]]; then echo "starting gunicorn" - gunicorn apis.wsgi -b 0.0.0.0:5000 --timeout 120 --workers=3 --threads=3 --worker-connections=1000 -fi \ No newline at end of file + gunicorn apis.wsgi -b 0.0.0.0:5000 --timeout 120 --workers=3 --threads=3 --worker-connections=1000 --access-logfile - --error-logfile - +fi