From 843707ad90169c60c42abc00b014c7f93a22cdba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Schl=C3=B6gl?= Date: Wed, 9 Oct 2024 14:15:07 +0200 Subject: [PATCH] fix: gunicorn startup command --- startup/100-gunicorn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/startup/100-gunicorn b/startup/100-gunicorn index e69de29..163ea93 100644 --- a/startup/100-gunicorn +++ b/startup/100-gunicorn @@ -0,0 +1,3 @@ +#!/bin/bash + +gunicorn wsgi -b 0.0.0.0:5000 --timeout 120 -c /app/gunicorn.config.py --workers=3 --threads=3 --worker-connections=1000 --pythonpath="/startup" --access-logfile - --error-logfile -