From f18416048519ad975701b8230c39965059247cfc Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Fri, 20 Dec 2019 12:34:58 +0100
Subject: [PATCH] Fixing STATIC_ROOT

---
 VIPSWeb/local_settings_sample.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VIPSWeb/local_settings_sample.py b/VIPSWeb/local_settings_sample.py
index 3d2743c4..b051ba22 100755
--- a/VIPSWeb/local_settings_sample.py
+++ b/VIPSWeb/local_settings_sample.py
@@ -41,7 +41,7 @@ SITE_ROOT = os.path.dirname(os.path.realpath(__file__))
 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
 # Example: "/var/www/example.com/static/"
 # Use 'python manage.py collectstatic' to put stuff into here
-STATIC_ROOT = SITE_ROOT + '/static'
+STATIC_ROOT = SITE_ROOT + '../static/'
 
 # Make this unique, and don't share it with anybody.
 SECRET_KEY = '#### HIDDEN ###'
-- 
GitLab