From e286c0e0236c9a84f8a3b99549f68ef6ea977ab3 Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 19 Apr 2022 13:32:27 +0200 Subject: [PATCH] Fix gunicorn config file name --- gunicorn.cfg => gunicorn.py | 0 run.sh | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename gunicorn.cfg => gunicorn.py (100%) diff --git a/gunicorn.cfg b/gunicorn.py similarity index 100% rename from gunicorn.cfg rename to gunicorn.py diff --git a/run.sh b/run.sh index 23dde40..cfccfb2 100755 --- a/run.sh +++ b/run.sh @@ -1,5 +1,5 @@ #!/bin/bash -gunicorn -c gunicorn.cfg main +gunicorn -c gunicorn.py main # Alternatively "passenger start" should do the trick as well.