From db6fa156c9b33c55fbf51990db8db60d2f42d7fa Mon Sep 17 00:00:00 2001 From: "ishak jmilou.ishak" Date: Thu, 28 Nov 2024 13:21:24 +0100 Subject: [PATCH] Update WSGI path to point to the correct application directory --- src/Python/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Python/wsgi.py b/src/Python/wsgi.py index d9c2cef..8d0f393 100644 --- a/src/Python/wsgi.py +++ b/src/Python/wsgi.py @@ -2,6 +2,6 @@ import sys import logging logging.basicConfig(stream=sys.stderr) -sys.path.insert(0, "/app.py") +sys.path.insert(0, "/home/rooziinuubii79/src/Python/flask/web") from app import app as application \ No newline at end of file