From 78d0a3c55f71d98d8c02d66a4486e79f76b4e10e Mon Sep 17 00:00:00 2001 From: Jakub K Date: Sun, 12 Nov 2023 20:05:55 +0100 Subject: [PATCH] IZAAC_BASE - reverse proxy --- izaac/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/izaac/settings.py b/izaac/settings.py index 9ddffc8..09954fa 100644 --- a/izaac/settings.py +++ b/izaac/settings.py @@ -185,7 +185,7 @@ USE_TZ = True STATIC_URL = "static/" STATICFILES_DIRS = [ - os.path.join(BASE_DIR, 'staticfiles') + os.path.join(BASE_DIR, 'static'), # Do NOT make this the same as STATIC_ROOT ] STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')